Artesaos\SEOTools\Tests\SEOToolsTest::test_set_title PHP Method

test_set_title() public method

public test_set_title ( )
    public function test_set_title()
    {
        $this->seoTools->setTitle('Kamehamehaaaaaaa');
        $expected = "<title>Kamehamehaaaaaaa - It's Over 9000!</title>";
        $expected .= '<meta name="description" content="For those who helped create the Genki Dama">';
        $expected .= '<meta property="og:title" content="Kamehamehaaaaaaa" />';
        $expected .= '<meta property="og:description" content="For those who helped create the Genki Dama" />';
        $expected .= '<meta name="twitter:title" content="Kamehamehaaaaaaa" />';
        $this->assertEquals('Kamehamehaaaaaaa - It\'s Over 9000!', $this->seoTools->getTitle());
        $this->setRightAssertion($expected);
    }