test: toHaveCount with invalid type

This commit is contained in:
Thai Nguyen Hung
2023-08-22 10:36:10 +07:00
parent 60b615ea6a
commit 79bc9e677f

View File

@ -1,11 +1,16 @@
<?php
use Pest\Exceptions\InvalidExpectationValue;
use PHPUnit\Framework\ExpectationFailedException;
test('pass', function () {
expect([1, 2, 3])->toHaveCount(3);
});
test('failures with invalid type', function () {
expect('foo')->toHaveCount(3);
})->throws(InvalidExpectationValue::class, 'Invalid expectation value type. Expected [countable|iterable]');
test('failures', function () {
expect([1, 2, 3])->toHaveCount(4);
})->throws(ExpectationFailedException::class);