Skip to content

Commit 29ab2f8

Browse files
Add Unit directory with ExampleTest.php to eliminate an error when running tests
1 parent 6fe95f3 commit 29ab2f8

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

tests/Unit/ExampleTest.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Tests\Unit;
4+
5+
use PHPUnit\Framework\TestCase;
6+
7+
class ExampleTest extends TestCase
8+
{
9+
/**
10+
* A basic test example.
11+
*/
12+
public function testThatTrueIsTrue(): void
13+
{
14+
$this->assertTrue(true);
15+
}
16+
}

0 commit comments

Comments
 (0)