Files
pest/tests/Features/Expect/not.php
T
2026-07-18 01:10:01 +01:00

11 lines
194 B
PHP

<?php
test('not property calls', function (): void {
expect(true)
->toBeTrue()
->not()->toBeFalse()
->not->toBeFalse
->and(false)
->toBeFalse();
});