Gc\Mvc\Factory\CacheFactoryTest::testCreateServiceWithFileSystem PHP Method

testCreateServiceWithFileSystem() public method

Test
    public function testCreateServiceWithFileSystem()
    {
        $this->config->shouldReceive('getValue')->once()->with('cache_handler')->andReturn('nothing');
        $instance = $this->object->createService($this->serviceLocator);
        $this->assertInstanceOf('Zend\\Cache\\Storage\\Adapter\\AbstractAdapter', $instance);
    }