コード例 #1
0
 public function testSetBaseEmpty()
 {
     $this->assertSame($this->htmlDoc, $this->htmlDoc->setBase(null, null));
     $base = $this->htmlDoc->getBaseTag();
     $this->assertInstanceOf('Appfuel\\View\\Html\\Element\\Base', $base);
     $this->assertNull($base->getAttribute('href'));
     $this->assertNull($base->getAttribute('target'));
 }