mirror of
http://124.126.16.154:8888/singularity/hdk-pay.git
synced 2026-01-15 03:55:07 +08:00
19 lines
338 B
PHP
19 lines
338 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Tests\Example;
|
||
|
|
|
||
|
|
use PHPUnit\Framework\TestCase;
|
||
|
|
use Example\Greeting;
|
||
|
|
|
||
|
|
class GreetingTest extends TestCase
|
||
|
|
{
|
||
|
|
public function testItGreetsUser(): void
|
||
|
|
{
|
||
|
|
$greeting = new Greeting('Rasmus Lerdorf');
|
||
|
|
|
||
|
|
$this->assertSame('Hello Rasmus Lerdorf', $greeting->sayHello());
|
||
|
|
}
|
||
|
|
}
|