From 72f5414017f7f1fdfe97eab152bdb2cd5f970fdc Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 16 Mar 2024 09:43:46 +0000 Subject: [PATCH] Merge pull request #1614 from hydephp/add-example-tests Internal: Add example tests https://github.com/hydephp/develop/commit/35577f1e9b24b8c6e89b4de8830af11ffe809449 --- tests/Feature/ExampleTest.php | 18 ++++++++++++++++++ tests/Unit/ExampleUnitTest.php | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/Unit/ExampleUnitTest.php diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 00000000..deca7e4f --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,18 @@ +assertTrue(true); + } +} diff --git a/tests/Unit/ExampleUnitTest.php b/tests/Unit/ExampleUnitTest.php new file mode 100644 index 00000000..c5e092f9 --- /dev/null +++ b/tests/Unit/ExampleUnitTest.php @@ -0,0 +1,18 @@ +assertTrue(true); + } +}