add more tests

This commit is contained in:
Adrian Nürnberger
2020-06-19 23:22:14 +02:00
parent 45b0d5d899
commit 6aa0356570
2 changed files with 9 additions and 3 deletions

View File

@ -38,3 +38,7 @@ test('depends with defined arguments', function (string $first, string $second)
test('depends run test only once', function () use (&$runCounter) {
assertEquals(2, $runCounter);
})->depends('first', 'second');
test('incomplete')->skip('incomplete');
test('depends on incomplete')->depends('incomplete')->doesNotPerformAssertions();