diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/FirstTest.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/unit/FirstTest.php b/tests/unit/FirstTest.php new file mode 100644 index 0000000..42d693e --- /dev/null +++ b/tests/unit/FirstTest.php @@ -0,0 +1,24 @@ +<?php + +// SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri +// SPDX-FileCopyrightText: 2024 Harald Eilertsen +// +// SPDX-License-Identifier: AGPL-3.0-or-later + +namespace VolseNet\Webtrap\Tests; + +use PHPUnit\Framework\TestCase; + +/** + * Just a test to check that the tests are working. + */ +class FirstTest extends TestCase +{ + /** + * A simple test that should allways pass. + */ + public function testShouldPass(): void + { + $this->assertTrue(true); + } +} |