Skip to content

Commit 94d2ac1

Browse files
committed
add dummy test
1 parent 9e8d04d commit 94d2ac1

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

tests/dummyTest.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)