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

test_set_next() public method

public test_set_next ( )
    public function test_set_next()
    {
        $fullHeader = "<title>It's Over 9000!</title>";
        $fullHeader .= "<meta name=\"description\" content=\"For those who helped create the Genki Dama\">";
        $fullHeader .= "<link rel=\"next\" href=\"http://domain.com\"/>";
        $next = 'http://domain.com';
        $this->seoMeta->setNext($next);
        $this->setRightAssertion($fullHeader);
        $this->assertEquals($next, $this->seoMeta->getNext());
    }