mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
test: toHaveCount with invalid type
This commit is contained in:
@ -1,11 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use Pest\Exceptions\InvalidExpectationValue;
|
||||||
use PHPUnit\Framework\ExpectationFailedException;
|
use PHPUnit\Framework\ExpectationFailedException;
|
||||||
|
|
||||||
test('pass', function () {
|
test('pass', function () {
|
||||||
expect([1, 2, 3])->toHaveCount(3);
|
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 () {
|
test('failures', function () {
|
||||||
expect([1, 2, 3])->toHaveCount(4);
|
expect([1, 2, 3])->toHaveCount(4);
|
||||||
})->throws(ExpectationFailedException::class);
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|||||||
Reference in New Issue
Block a user