Files
pest/tests-tia/Fixtures/sample-project/tests/MathTest.php
nuno maduro c6a42a2b28 wip
2026-04-22 08:07:52 -07:00

14 lines
205 B
PHP

<?php
declare(strict_types=1);
use App\Math;
test('math add', function () {
expect(Math::add(2, 3))->toBe(5);
});
test('math add negative', function () {
expect(Math::add(-1, 1))->toBe(0);
});