Christopher Vagnetoft
9b78e90b57
Some checks failed
continuous-integration/woodpecker the build failed
16 lines
307 B
PHP
16 lines
307 B
PHP
<?php
|
|
|
|
namespace Hello;
|
|
|
|
class HelloApplicationTest extends \PhpUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @covers HelloApplication::getMessage
|
|
*/
|
|
public function testTheMessage()
|
|
{
|
|
$app = new HelloApplication();
|
|
$this->assertEquals("Hello World!\n", $app->getMessage());
|
|
}
|
|
}
|