More tests

This commit is contained in:
Nuno Maduro
2023-05-27 14:08:38 +01:00
parent a90b90ad29
commit 26a6e7d712
12 changed files with 101 additions and 15 deletions

View File

@ -9,3 +9,9 @@ it('allows access to the underlying expectNotToPerformAssertions method', functi
it('allows performing no expectations without being risky', function () {
$result = 1 + 1;
})->throwsNoExceptions();
describe('a "describe" group of tests', function () {
it('allows performing no expectations without being risky', function () {
$result = 1 + 1;
});
})->throwsNoExceptions();