aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/FirstTest.php
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2024-07-05 08:52:22 +0200
committerHarald Eilertsen <haraldei@anduin.net>2024-07-05 08:52:22 +0200
commitdd9a627ab40e69e903d731f9644055faab8163fa (patch)
tree525019e65ed3f88adca8cc19381ed8db760bcdfd /tests/unit/FirstTest.php
parent27bf644d5809be63e439484a3f8ffee81b9d367b (diff)
downloadvolse-webtrap-dd9a627ab40e69e903d731f9644055faab8163fa.tar.gz
volse-webtrap-dd9a627ab40e69e903d731f9644055faab8163fa.tar.bz2
volse-webtrap-dd9a627ab40e69e903d731f9644055faab8163fa.zip
Add Composer, phpunit, phpcs and editorconfig
Diffstat (limited to 'tests/unit/FirstTest.php')
-rw-r--r--tests/unit/FirstTest.php24
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);
+ }
+}