Files
pest/tests/Features/BeforeEachProxiesToTestCallWithExpectations.php
T
nuno maduro cd0e921158 chore: style
2026-07-19 00:42:29 +01:00

18 lines
325 B
PHP

<?php
declare(strict_types=1);
beforeEach()->expect(true)->toBeTrue();
test('runs 1', function (): void {
// This test did performs assertions...
});
test('runs 2', function (): void {
// This test did performs assertions...
});
test('runs 3', function (): void {
// This test did performs assertions...
});