NullCacheManagerTest.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * This file is part of PHP CS Fixer.
  5. *
  6. * (c) Fabien Potencier <fabien@symfony.com>
  7. * Dariusz Rumiński <dariusz.ruminski@gmail.com>
  8. *
  9. * This source file is subject to the MIT license that is bundled
  10. * with this source code in the file LICENSE.
  11. */
  12. namespace PhpCsFixer\Tests\Cache;
  13. use PhpCsFixer\Cache\NullCacheManager;
  14. use PhpCsFixer\Tests\TestCase;
  15. /**
  16. * @author Andreas Möller <am@localheinz.com>
  17. *
  18. * @internal
  19. *
  20. * @covers \PhpCsFixer\Cache\NullCacheManager
  21. */
  22. final class NullCacheManagerTest extends TestCase
  23. {
  24. public function testIsFinal(): void
  25. {
  26. $reflection = new \ReflectionClass(\PhpCsFixer\Cache\NullCacheManager::class);
  27. self::assertTrue($reflection->isFinal());
  28. }
  29. public function testImplementsCacheManagerInterface(): void
  30. {
  31. $reflection = new \ReflectionClass(\PhpCsFixer\Cache\NullCacheManager::class);
  32. self::assertTrue($reflection->implementsInterface(\PhpCsFixer\Cache\CacheManagerInterface::class));
  33. }
  34. public function testNeedFixingReturnsTrue(): void
  35. {
  36. $manager = new NullCacheManager();
  37. self::assertTrue($manager->needFixing('foo.php', 'bar'));
  38. $manager->setFile(__FILE__, 'XXX'); // no-op, should not raise an exception
  39. }
  40. }