mirror of
https://github.com/pestphp/pest.git
synced 2026-04-21 06:27:28 +02:00
16 lines
281 B
PHP
16 lines
281 B
PHP
<?php
|
|
|
|
beforeEach()->expect(true)->toBeTrue();
|
|
|
|
test('runs 1', function () {
|
|
// This test did performs assertions...
|
|
});
|
|
|
|
test('runs 2', function () {
|
|
// This test did performs assertions...
|
|
});
|
|
|
|
test('runs 3', function () {
|
|
// This test did performs assertions...
|
|
});
|