diff options
Diffstat (limited to 'services/app/tests/AppTest.php')
| -rw-r--r-- | services/app/tests/AppTest.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/services/app/tests/AppTest.php b/services/app/tests/AppTest.php new file mode 100644 index 0000000..e6aa1c8 --- /dev/null +++ b/services/app/tests/AppTest.php @@ -0,0 +1,13 @@ +<?php + +declare(strict_types=1); + +use PHPUnit\Framework\TestCase; + +final class AppTest extends TestCase +{ + public function testApp(): void + { + $this->assertTrue(true); + } +} |
