mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
use PHPUnit\Framework\ExpectationFailedException;
|
|
|
|
beforeEach(function () {
|
|
$this->user = (object) [
|
|
'id' => 1,
|
|
'name' => 'Nuno',
|
|
'email' => 'enunomaduro@gmail.com',
|
|
];
|
|
});
|
|
|
|
test('pass', function () {
|
|
expect($this->user)->toMatchObject([
|
|
'name' => 'Nuno',
|
|
'email' => 'enunomaduro@gmail.com',
|
|
]);
|
|
});
|
|
|
|
test('pass with class', function () {
|
|
expect(new class()
|
|
{
|
|
public $name = 'Nuno';
|
|
|
|
public $email = 'enunomaduro@gmail.com';
|
|
})->toMatchObject([
|
|
'name' => 'Nuno',
|
|
'email' => 'enunomaduro@gmail.com',
|
|
]);
|
|
});
|
|
|
|
test('failures', function () {
|
|
expect($this->user)->toMatchObject([
|
|
'name' => 'Not the same name',
|
|
'email' => 'enunomaduro@gmail.com',
|
|
]);
|
|
})->throws(ExpectationFailedException::class);
|
|
|
|
test('failures with custom message', function () {
|
|
expect($this->user)->toMatchObject([
|
|
'name' => 'Not the same name',
|
|
'email' => 'enunomaduro@gmail.com',
|
|
], 'oh no!');
|
|
})->throws(ExpectationFailedException::class, 'oh no!');
|
|
|
|
test('not failures', function () {
|
|
expect($this->user)->not->toMatchObject([
|
|
'id' => 1,
|
|
]);
|
|
})->throws(ExpectationFailedException::class);
|