From faa64efb71ed5d8435fdd836b032ca3f912b6372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Elias=20Rios=20Nu=C3=B1ez?= Date: Mon, 1 Jun 2026 09:22:21 -0300 Subject: [PATCH] config parte 3 --- tests/Feature/ExampleTest.php | 19 +++++++++++++++++++ tests/TestCase.php | 10 ++++++++++ tests/Unit/ExampleTest.php | 16 ++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100755 tests/Feature/ExampleTest.php create mode 100755 tests/TestCase.php create mode 100755 tests/Unit/ExampleTest.php diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100755 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 100755 index 0000000..fe1ffc2 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +}