Exemplo n.º 1
0
 public function testParent()
 {
     $hf = $this->mockHeaderFactory;
     $part = new MimePart($hf);
     $parent = new MimePart($hf);
     $part->setParent($parent);
     $this->assertSame($parent, $part->getParent());
 }