Initial commit
Some checks failed
continuous-integration/woodpecker the build failed

This commit is contained in:
2021-12-03 16:46:00 +01:00
parent 9e12f48274
commit 9b78e90b57
10 changed files with 115 additions and 1 deletions

View File

@ -0,0 +1,15 @@
<?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());
}
}