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

test_set_title_without_append_default() public method

    public function test_set_title_without_append_default()
    {
        $fullTitle = 'Kamehamehaaaaaaaa';
        $fullHeader = '<title>' . $fullTitle . '</title>';
        $fullHeader .= "<meta name=\"description\" content=\"For those who helped create the Genki Dama\">";
        $this->seoMeta->setTitle($fullTitle, false);
        $this->assertEquals($fullTitle, $this->seoMeta->getTitle());
        $this->setRightAssertion($fullHeader);
    }