Rename test methods (#5574)

This commit is contained in:
Dries Vints 2021-03-26 15:47:26 +01:00 committed by GitHub
parent 6bc0b1cfcb
commit 5808129a1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ class ExampleTest extends TestCase
* *
* @return void * @return void
*/ */
public function testBasicTest() public function test_example()
{ {
$response = $this->get('/'); $response = $this->get('/');

View File

@ -11,7 +11,7 @@ class ExampleTest extends TestCase
* *
* @return void * @return void
*/ */
public function testBasicTest() public function test_example()
{ {
$this->assertTrue(true); $this->assertTrue(true);
} }