BrowscapTest\Data\DataCollectionTest::testGetEngineThrowsExceptionIfPlatformDoesNotExist PHP Method

testGetEngineThrowsExceptionIfPlatformDoesNotExist() public method

    public function testGetEngineThrowsExceptionIfPlatformDoesNotExist()
    {
        $this->object->addEnginesFile($this->getEngineJsonFixture());
        self::assertInternalType('array', $this->object->getEngines());
        $this->object->getEngine('NotExists');
    }
DataCollectionTest