Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lisachenko committed Apr 13, 2018
1 parent ce7c250 commit 021b1c5
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions test/Scanner/CachingFileScannerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,6 @@ public function testCachingFileScannerWillUseSameInternalFileScannerWithMatching
$cfs3 = new CachingFileScanner(__DIR__ . '/../TestAsset/FooClass.php');
self::assertEquals(2, $this->getCacheCount($cfs3));
self::assertDifferentInternalFileScanner($cfs2, $cfs3);

$cfs4 = new CachingFileScanner(__DIR__ . '/../TestAsset/FooClass.php');
self::assertEquals(3, $this->getCacheCount($cfs4));
self::assertDifferentInternalFileScanner($cfs3, $cfs4);

$cfs5 = new CachingFileScanner(__DIR__ . '/../TestAsset/FooClass.php');
self::assertEquals(3, $this->getCacheCount($cfs5));
self::assertSameInternalFileScanner($cfs4, $cfs5);

$cfs6 = new CachingFileScanner(__DIR__ . '/../TestAsset/BarClass.php');
self::assertEquals(4, $this->getCacheCount($cfs6));
self::assertDifferentInternalFileScanner($cfs5, $cfs6);
}

protected function getCacheCount(CachingFileScanner $cfs)
Expand Down

0 comments on commit 021b1c5

Please sign in to comment.