Пример #1
0
 /**
  * @depends	testInterface
  * @return	null
  */
 public function testSetTitleSeparator()
 {
     $title = $this->htmlDoc->getTitleTag();
     $this->assertEquals(' ', $title->getSeparator());
     $this->assertSame($this->htmlDoc, $this->htmlDoc->setTitleSeparator(':'));
     $this->assertEquals(':', $title->getSeparator());
 }