Example #1
0
 /**
  * @covers ::__construct
  */
 public function test_construct()
 {
     $this->assertInstanceOf('\\BLW\\Type\\IContainer', $this->Message->getTo(), 'IMesage::getTo() should return an instance of IContainer');
     $this->assertInstanceOf('\\BLW\\Type\\IContainer', $this->Message->getFrom(), 'IMesage::getFrom() should return an instance of IContainer');
     $this->assertInstanceOf('\\BLW\\Type\\IContainer', $this->Message->getReplyTo(), 'IMesage::getReplyTo() should return an instance of IContainer');
     $this->assertInstanceOf('\\BLW\\Type\\IContainer', $this->Message->getCC(), 'IMesage::getCC() should return an instance of IContainer');
     $this->assertInstanceOf('\\BLW\\Type\\IContainer', $this->Message->getBCC(), 'IMesage::getBCC() should return an instance of IContainer');
 }