Contao\CoreBundle\Test\Config\Dumper\CombinedFileDumperTest::testInstantiation PHP Метод

testInstantiation() публичный Метод

Tests the object instantiation.
public testInstantiation ( )
    public function testInstantiation()
    {
        /** @var Filesystem|\PHPUnit_Framework_MockObject_MockObject $filesystem */
        $filesystem = $this->getMock('Symfony\\Component\\Filesystem\\Filesystem');
        /** @var PhpFileLoader|\PHPUnit_Framework_MockObject_MockObject $fileLoader */
        $fileLoader = $this->getMock('Contao\\CoreBundle\\Config\\Loader\\PhpFileLoader');
        $this->assertInstanceOf('Contao\\CoreBundle\\Config\\Dumper\\CombinedFileDumper', new CombinedFileDumper($filesystem, $fileLoader, $this->getCacheDir()));
    }