diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index bf3bad3d..3abfb8d6 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -215,6 +215,14 @@ ✓ it can just define the code if given condition is true ✓ it can just define the message if given condition is 1 ✓ it can just define the code if given condition is 1 + ✓ it not catch exceptions if given condition is true + ✓ it catch exceptions if given condition is false + ✓ it catch exceptions and messages if given condition is false + ✓ it catch exceptions, messages and code if given condition is false + ✓ it can just define the message if given condition is false + ✓ it can just define the code if given condition is false + ✓ it can just define the message if given condition is 0 + ✓ it can just define the code if given condition is 0 PASS Tests\Features\Expect\HigherOrder\methods ✓ it can access methods @@ -1352,4 +1360,4 @@ WARN Tests\Visual\Version - visual snapshot of help command output - Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 958 passed (2281 assertions) \ No newline at end of file + Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 966 passed (2292 assertions) \ No newline at end of file diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index ef7e0e79..21675d07 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -16,7 +16,7 @@ $run = function () { test('parallel', function () use ($run) { expect($run('--exclude-group=integration')) - ->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 947 passed (2266 assertions)') + ->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 955 passed (2277 assertions)') ->toContain('Parallel: 3 processes'); })->skipOnWindows();