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

test_add_images() public method

public test_add_images ( )
    public function test_add_images()
    {
        $this->seoTools->addImages(['Kamehamehaaaaaaa.png']);
        $this->seoTools->addImages('Kamehamehaaaaaaa.png');
        $expected = "<title>It's Over 9000!</title>";
        $expected .= '<meta name="description" content="For those who helped create the Genki Dama">';
        $expected .= '<meta property="og:title" content="Over 9000 Thousand!" />';
        $expected .= '<meta property="og:description" content="For those who helped create the Genki Dama" />';
        $expected .= '<meta property="og:image" content="Kamehamehaaaaaaa.png" />';
        $expected .= '<meta property="og:image" content="Kamehamehaaaaaaa.png" />';
        $expected .= '<meta name="twitter:images0" content="Kamehamehaaaaaaa.png" />';
        $expected .= '<meta name="twitter:images1" content="Kamehamehaaaaaaa.png" />';
        $this->setRightAssertion($expected);
    }