Пример #1
0
 /**
  * @depends	testInitialState
  * @return	null
  */
 public function testCreateTitleTagWithSep()
 {
     $sep = ':';
     $tag = $this->factory->createTitleTag(null, $sep);
     $this->assertInstanceOf('Appfuel\\View\\Html\\Tag\\TitleTag', $tag);
     $this->assertTrue($tag->isEmpty());
     $this->assertEquals($sep, $tag->getContentSeparator());
 }