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 3029e23 commit e8a3784Copy full SHA for e8a3784
src/test/QafooLabs/Refactoring/Domain/Model/DirectoryTest.php
@@ -36,8 +36,11 @@ public function testRemovesDuplicates()
36
$directory = new Directory($dir, $dir);
37
$files = $directory->findAllPhpFilesRecursivly();
38
39
+ $foundFiles = array();
40
foreach ($files as $f => $file) {
- $this->assertEquals('vfs://project/src/Foo/Bar.php', $f);
41
+ $foundFiles[] = $f;
42
}
43
+
44
+ $this->assertEquals(array('vfs://project/src/Foo/Bar.php'), $foundFiles);
45
46
0 commit comments