* Dariusz Rumiński * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Tests\Cache; use PhpCsFixer\Cache\NullCacheManager; /** * @author Andreas Möller * * @internal * * @covers \PhpCsFixer\Cache\NullCacheManager */ final class NullCacheManagerTest extends \PHPUnit_Framework_TestCase { public function testIsFinal() { $reflection = new \ReflectionClass(\PhpCsFixer\Cache\NullCacheManager::class); $this->assertTrue($reflection->isFinal()); } public function testImplementsCacheManagerInterface() { $reflection = new \ReflectionClass(\PhpCsFixer\Cache\NullCacheManager::class); $this->assertTrue($reflection->implementsInterface(\PhpCsFixer\Cache\CacheManagerInterface::class)); } public function testNeedFixingReturnsTrue() { $manager = new NullCacheManager(); $this->assertTrue($manager->needFixing('foo.php', 'bar')); } }