mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01: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...
|
|
});
|