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