test: add example test
This commit is contained in:
parent
9e8dd46570
commit
095549be9f
1 changed files with 13 additions and 0 deletions
13
tests/exampleTest.php
Normal file
13
tests/exampleTest.php
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Reference in a new issue