mirror of
https://github.com/pestphp/pest.git
synced 2026-04-23 07:27:27 +02:00
10 lines
150 B
PHP
10 lines
150 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Greeter;
|
|
|
|
test('greeter greets', function () {
|
|
expect(Greeter::greet('Nuno'))->toBe('Hello, Nuno!');
|
|
});
|