GeNF/tests/TestRunner.php

16 lines
362 B
PHP
Raw Normal View History

2022-12-05 20:52:40 +01:00
<?php
// Autoload files using the Composer autoloader.
require_once __DIR__ . '/../vendor/autoload.php';
use GeNF\Dispatcher;
use PHPUnit\Framework\TestCase;
final class TestRunner extends TestCase
{
public function testPrintHelloWorld() {
$actualClass = new Dispatcher();
$this->assertEquals('Hello World', $actualClass->init());
}
}