From 9cdf46ae1ceff8dce9dd5b1c8587f2d948a88e2c Mon Sep 17 00:00:00 2001 From: Nick Van Doorn Date: Mon, 21 Apr 2025 15:04:28 -0700 Subject: Initial commit --- tests/Feature/ExampleTest.php | 19 +++++++++++++++++++ tests/TestCase.php | 10 ++++++++++ tests/Unit/ExampleTest.php | 16 ++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/TestCase.php create mode 100644 tests/Unit/ExampleTest.php (limited to 'tests') diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..8364a84 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} -- cgit v1.2.3