AssetManagerTest\Service\MapResolverTest::testCollect PHP Method

testCollect() public method

Test Collect returns valid list of assets
public testCollect ( )
    public function testCollect()
    {
        $map = array('foo' => 'bar', 'baz' => 'qux');
        $resolver = new MapResolver($map);
        $this->assertEquals(array_keys($map), $resolver->collect());
    }