This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
footnotes/tests/exampleTest.php
2021-08-10 19:18:02 +01:00

13 lines
216 B
PHP

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