/**
  * @covers Ebizmarts\Mandrill\Model\Message::addCc
  */
 public function testAddCc()
 {
     $this->_message->addCc('cc');
     $this->assertEquals(array('cc'), $this->_message->getTo());
     $this->_message->addCc(array('cc1', 'cc2'));
     $this->assertEquals(array('cc', 'cc1', 'cc2'), $this->_message->getTo());
 }