mirror of
https://github.com/pestphp/pest.git
synced 2026-07-21 17:10:03 +02:00
10 lines
182 B
PHP
10 lines
182 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
test('a test', function (): void {
|
|
expect(['key' => 'foo'])->toHaveKey('key');
|
|
});
|
|
|
|
test('higher order message test')->expect(true)->toBeTrue();
|