toBeNumeric(); expect('A')->not->toBeNumeric(); }); test('failures', function () { expect(null)->toBeNumeric(); })->throws(ExpectationFailedException::class); test('not failures', function () { expect(6 * 7)->not->toBeNumeric(); })->throws(ExpectationFailedException::class);