chore: updates snapshots

This commit is contained in:
Nuno Maduro
2023-05-06 11:51:58 +01:00
parent cada5c5136
commit 3e1cef296f
3 changed files with 3 additions and 3 deletions

View File

@ -49,6 +49,7 @@
✓ it uses the correct PHPUnit attribute for function
✓ it removes duplicated attributes
✓ it guesses if the given argument is a class or function
✓ it uses the correct PHPUnit attribute for trait
✓ it appends CoversNothing to method attributes
✓ it does not append CoversNothing to other methods
✓ it throws exception if no class nor method has been found
@ -1034,4 +1035,4 @@
PASS Tests\Visual\Version
✓ visual snapshot of help command output
Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 17 skipped, 715 passed (1727 assertions)
Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 17 skipped, 716 passed (1729 assertions)

View File

@ -4,5 +4,4 @@ namespace Tests\Fixtures\Covers;
trait CoversTrait
{
}

View File

@ -18,7 +18,7 @@ $run = function () {
test('parallel', function () use ($run) {
expect($run('--exclude-group=integration'))
->toContain('Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 14 skipped, 703 passed (1712 assertions)')
->toContain('Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 14 skipped, 704 passed (1714 assertions)')
->toContain('Parallel: 3 processes');
})->skipOnWindows();