We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c0500d commit 0c1e904Copy full SHA for 0c1e904
tests/tests/FilterTest.php
@@ -78,6 +78,11 @@ public function testIncludedFileIsNotFiltered(): void
78
$filter->includeFile(realpath(__DIR__ . '/../_files/filter/a.php'));
79
80
$this->assertFalse($filter->isExcluded(realpath(__DIR__ . '/../_files/filter/a.php')));
81
+
82
+ /**
83
+ * Assertion is performed twice to test the is-cached path.
84
+ */
85
+ $this->assertFalse($filter->isExcluded(realpath(__DIR__ . '/../_files/filter/a.php')));
86
}
87
88
public function testNotIncludedFileIsFiltered(): void
0 commit comments