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

test_set_title_with_append_default() public method

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