Files
hdk-pay/tests/Example/GreetingTest.php

19 lines
338 B
PHP
Raw Normal View History

2023-07-18 10:00:03 +08:00
<?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());
}
}