mirror of
https://github.com/pestphp/pest.git
synced 2026-07-21 17:10:03 +02:00
16 lines
299 B
PHP
16 lines
299 B
PHP
<?php
|
|
|
|
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...
|
|
});
|