BrowscapTest\Data\Factory\EngineFactoryTest::testBuild PHP Method

testBuild() public method

tests the creating of an engine factory
public testBuild ( )
    public function testBuild()
    {
        $engineData = ['abc' => 'def'];
        $json = [];
        $engineName = 'Test';
        self::assertInstanceOf('\\Browscap\\Data\\Engine', $this->object->build($engineData, $json, $engineName));
    }
EngineFactoryTest