Check on non named tests

This commit is contained in:
Jordan Welch
2024-04-29 18:10:35 -05:00
parent 8bbee3c1e5
commit 10da81eee4
3 changed files with 8 additions and 2 deletions

View File

@ -63,6 +63,8 @@
✓ lazy datasets with (1) ✓ lazy datasets with (1)
✓ lazy datasets with (2) ✓ lazy datasets with (2)
✓ lazy datasets did the job right ✓ lazy datasets did the job right
✓ interpolated (1) lazy datasets
✓ interpolated (2) lazy datasets
✓ eager datasets with (1) ✓ eager datasets with (1)
✓ eager datasets with (2) ✓ eager datasets with (2)
✓ eager datasets did the job right ✓ eager datasets did the job right
@ -1442,4 +1444,4 @@
WARN Tests\Visual\Version WARN Tests\Visual\Version
- visual snapshot of help command output - visual snapshot of help command output
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 21 skipped, 1032 passed (2517 assertions) Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 21 skipped, 1034 passed (2519 assertions)

View File

@ -61,6 +61,10 @@ test('lazy datasets did the job right', function () use ($state) {
expect($state->text)->toBe('12'); expect($state->text)->toBe('12');
}); });
test('interpolated :dataset lazy datasets', function ($text) {
expect(true)->toBeTrue();
})->with($datasets);
$state->text = ''; $state->text = '';
test('eager datasets', function ($text) use ($state, $datasets) { test('eager datasets', function ($text) use ($state, $datasets) {

View File

@ -16,7 +16,7 @@ $run = function () {
test('parallel', function () use ($run) { test('parallel', function () use ($run) {
expect($run('--exclude-group=integration')) expect($run('--exclude-group=integration'))
->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 1018 passed (2485 assertions)') ->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 1020 passed (2487 assertions)')
->toContain('Parallel: 3 processes'); ->toContain('Parallel: 3 processes');
})->skipOnWindows(); })->skipOnWindows();