From 414a569c7f4588ddcaaebf0ac824aad394090ae9 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Mon, 5 Sep 2022 12:19:04 +0200 Subject: [PATCH] Rename sample test, remove unit test --- phpunit.xml | 3 --- tests/Feature/ExampleTest.php | 21 --------------------- tests/Feature/HomepageReachabilityTest.php | 15 +++++++++++++++ tests/Unit/ExampleTest.php | 18 ------------------ 4 files changed, 15 insertions(+), 42 deletions(-) delete mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/Feature/HomepageReachabilityTest.php delete mode 100644 tests/Unit/ExampleTest.php diff --git a/phpunit.xml b/phpunit.xml index 2ac86a1..9dc3ad8 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -5,9 +5,6 @@ colors="true" > - - ./tests/Unit - ./tests/Feature diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php deleted file mode 100644 index 1eafba6..0000000 --- a/tests/Feature/ExampleTest.php +++ /dev/null @@ -1,21 +0,0 @@ -get('/'); - - $response->assertStatus(200); - } -} diff --git a/tests/Feature/HomepageReachabilityTest.php b/tests/Feature/HomepageReachabilityTest.php new file mode 100644 index 0000000..9ab2a80 --- /dev/null +++ b/tests/Feature/HomepageReachabilityTest.php @@ -0,0 +1,15 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php deleted file mode 100644 index e5c5fef..0000000 --- a/tests/Unit/ExampleTest.php +++ /dev/null @@ -1,18 +0,0 @@ -assertTrue(true); - } -}