Artesaos\SEOTools\Tests\SeoToolsTraitTest::test_seotools_trait PHP Method

test_seotools_trait() public method

public test_seotools_trait ( )
    public function test_seotools_trait()
    {
        $stub = m::mock(SeoToolsTraitStub::class);
        $stub->shouldReceive('makeSeoForTests')->andReturn($this->app['seotools']);
        $this->assertInstanceOf(SEOTools::class, $stub->makeSeoForTests());
    }
SeoToolsTraitTest