getDefaultTitle() public method

Takes the default title.
public getDefaultTitle ( ) : string
return string
コード例 #1
0
ファイル: SEOMetaTest.php プロジェクト: artesaos/seotools
 public function test_set_default_title()
 {
     $fullTitle = 'Kamehamehaaaaaaaa';
     $fullHeader = '<title>' . $fullTitle . '</title>';
     $fullHeader .= "<meta name=\"description\" content=\"For those who helped create the Genki Dama\">";
     $this->seoMeta->setTitleDefault($fullTitle);
     $this->assertEquals($fullTitle, $this->seoMeta->getDefaultTitle());
     $this->setRightAssertion($fullHeader);
 }