AssetManagerTest\Service\ConcatResolverTest::testConstruct PHP 메소드

testConstruct() 공개 메소드

public testConstruct ( )
    public function testConstruct()
    {
        $resolver = new ConcatResolver(array('key1' => array(__FILE__), 'key2' => array(__FILE__)));
        $this->assertTrue($resolver instanceof ResolverInterface);
        $this->assertTrue($resolver instanceof AggregateResolverAwareInterface);
        $this->assertSame(array('key1' => array(__FILE__), 'key2' => array(__FILE__)), $resolver->getConcats());
    }