diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index f6f24f94..f74011a5 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -1908,6 +1908,11 @@ ✓ activateLinkTracking() → it tracks linked sources across consecutive tests ✓ activateLinkTracking() → it records nothing while inactive + PASS Tests\Unit\Plugins\Tia\ResultKey + ✓ it keys a result per dataset row rather than per method + ✓ it records assertions against the same per-dataset key + ✓ it leaves a test without a dataset keyed by class and method + PASS Tests\Unit\Plugins\Tia\TableExtractor ✓ fromSql() → it extracts tables from plain DML ✓ fromSql() → it extracts tables from joins @@ -2186,4 +2191,4 @@ ✓ pass with dataset with ('my-datas-set-value') ✓ within describe → pass with dataset with ('my-datas-set-value') - Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 40 todos, 35 skipped, 1542 passed (3375 assertions) \ No newline at end of file + Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 40 todos, 35 skipped, 1545 passed (3378 assertions) \ No newline at end of file diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index b5623e70..a35d3492 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -24,13 +24,13 @@ test('parallel', function () use ($run): void { $file = file_get_contents(__FILE__); $file = preg_replace( '/\$expected = \'.*?\';/', - "\$expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1525 passed (3322 assertions)';", + "\$expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1528 passed (3325 assertions)';", $file, ); file_put_contents(__FILE__, $file); } - $expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1525 passed (3322 assertions)'; + $expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1528 passed (3325 assertions)'; expect($output) ->toContain("Tests: {$expected}")