BrowscapTest\Data\EngineTest::testGetProperties PHP Method

testGetProperties() public method

tests setter and getter for the engine properties
public testGetProperties ( )
    public function testGetProperties()
    {
        $properties = ['abc' => 'def'];
        $object = new Engine($properties);
        self::assertSame($properties, $object->getProperties());
    }