1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Symfony\Component\Config\Tests;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Config\ConfigCacheFactory;
- class ConfigCacheFactoryTest extends TestCase
- {
-
- public function testCacheWithInvalidCallback()
- {
- $cacheFactory = new ConfigCacheFactory(true);
- $cacheFactory->cache('file', new \stdClass());
- }
- }
|