diff options
author | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:30:56 -0400 |
---|---|---|
committer | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:30:56 -0400 |
commit | 2466d29fe2319c1057cca7cf1e1977451088276e (patch) | |
tree | 23a9ada5dec1f8c8e106be100d3a0d75fcc0125e /tests/Unit/ExampleTest.php |
initial commit of laravel
Diffstat (limited to 'tests/Unit/ExampleTest.php')
-rw-r--r-- | tests/Unit/ExampleTest.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php new file mode 100644 index 0000000..62e8c3c --- /dev/null +++ b/tests/Unit/ExampleTest.php @@ -0,0 +1,18 @@ +<?php + +namespace Tests\Unit; + +use PHPUnit\Framework\TestCase; + +class ExampleTest extends TestCase +{ + /** + * A basic test example. + * + * @return void + */ + public function test_example() + { + $this->assertTrue(true); + } +} |