Files
pest/tests/Expect/not.php

11 lines
188 B
PHP

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