docker-pipeline-test/tests/HelloApplicationTest.php
Christopher Vagnetoft 9b78e90b57
Some checks failed
continuous-integration/woodpecker the build failed
Initial commit
2021-12-03 16:46:00 +01:00

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());
}
}