From e8f4a0a6c483c343bd2eb3720fc7f9e6ebc10654 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Mon, 11 Jan 2021 21:58:22 +0800 Subject: [PATCH] Fix test names --- tests/CommandOptions/TestsOnlyOptionsTest.php | 4 ++-- tests/CrudSimpleMakeCommandTest.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/CommandOptions/TestsOnlyOptionsTest.php b/tests/CommandOptions/TestsOnlyOptionsTest.php index 72df453..f5e003c 100644 --- a/tests/CommandOptions/TestsOnlyOptionsTest.php +++ b/tests/CommandOptions/TestsOnlyOptionsTest.php @@ -2,10 +2,10 @@ namespace Tests\CommandOptions; -use Tests\TestCase; use Illuminate\Contracts\Console\Kernel; +use Tests\TestCase; -class TestOnlyOptionsTest extends TestCase +class TestsOnlyOptionsTest extends TestCase { /** @test */ public function it_can_generate_only_tests_files() diff --git a/tests/CrudSimpleMakeCommandTest.php b/tests/CrudSimpleMakeCommandTest.php index 1844fea..de97f88 100644 --- a/tests/CrudSimpleMakeCommandTest.php +++ b/tests/CrudSimpleMakeCommandTest.php @@ -4,7 +4,7 @@ namespace Tests; use Illuminate\Contracts\Console\Kernel; -class CrudSimpleCommandTest extends TestCase +class CrudSimpleMakeCommandTest extends TestCase { /** @test */ public function it_can_generate_simple_crud_files()