Gatekeeper/tests/TestRunner.php

16 lines
347 B
PHP
Raw Normal View History

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