We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8d04d commit 94d2ac1Copy full SHA for 94d2ac1
1 file changed
tests/dummyTest.php
@@ -0,0 +1,20 @@
1
+<?php
2
+/*
3
+ This file is here as an example and to make sure the github actions runner has a test to run.
4
+ It does not actually test anything.
5
+*/
6
+
7
+namespace Pdsinterop\Dummy;
8
9
+use PHPUnit\Framework\TestCase;
10
11
+class DummyTest extends TestCase
12
+{
13
+ /**
14
+ * @coversNothing
15
+ */
16
+ public function testDummy(): void
17
+ {
18
+ $this->assertTrue(true);
19
+ }
20
+}
0 commit comments