Artesaos\SEOTools\Tests\SEOMetaTest::test_set_default_title PHP Method

test_set_default_title() public method

    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);
    }