test: add example test

This commit is contained in:
Ben Goldsworthy 2021-08-10 19:18:02 +01:00
parent 9e8dd46570
commit 095549be9f

13
tests/exampleTest.php Normal file
View file

@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
use PHPUnit\Framework\TestCase;
final class ExampleTest extends TestCase {
public function testAdd() {
$result = 1 + 2;
$this->assertEquals(3, $result);
}
}