AssetManagerTest\Service\MapResolverTest::testConstruct PHP Method

testConstruct() public method

public testConstruct ( )
    public function testConstruct()
    {
        $resolver = new MapResolver(array('key1' => 'value1', 'key2' => 'value2'));
        $this->assertSame(array('key1' => 'value1', 'key2' => 'value2'), $resolver->getMap());
    }