Skip to content

Commit 60188ac

Browse files
committed
test: rename test method names
1 parent 7f9ffac commit 60188ac

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/system/Autoloader/FileLocatorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function setUp(): void
5151
$this->locator = new FileLocator($autoloader);
5252
}
5353

54-
public function testLocateFileNotNamespacedWorks()
54+
public function testLocateFileNotNamespacedFindsInAppDirectory()
5555
{
5656
$file = 'Controllers/Home'; // not namespaced
5757

@@ -67,7 +67,7 @@ public function testLocateFileNotNamespacedNotFound()
6767
$this->assertFalse($this->locator->locateFile($file));
6868
}
6969

70-
public function testLocateFileNotNamespacedWorksInAppDirectory()
70+
public function testLocateFileNotNamespacedFindsWithFolderInAppDirectory()
7171
{
7272
$file = 'welcome_message'; // not namespaced
7373

@@ -76,7 +76,7 @@ public function testLocateFileNotNamespacedWorksInAppDirectory()
7676
$this->assertSame($expected, $this->locator->locateFile($file, 'Views'));
7777
}
7878

79-
public function testLocateFileNotNamespacedWorksInAppDirectoryWithoutFolder()
79+
public function testLocateFileNotNamespacedFindesWithoutFolderInAppDirectory()
8080
{
8181
$file = 'Common'; // not namespaced
8282

0 commit comments

Comments
 (0)