Add composer and phing dependency

Signed-off-by: Diederik de Groot <ddegroot@talon.nl>
This commit is contained in:
Diederik de Groot
2020-03-18 09:04:54 +01:00
parent 822e2e5f90
commit 3621e1d6e6
5 changed files with 104 additions and 27 deletions

17
tests/resolverTest.php Normal file
View File

@@ -0,0 +1,17 @@
<?php declare(strict_types=1);
use PHPUnit\Framework\TestCase;
include_once "lib/resolver.php";
final class ResolverTest extends TestCase
{
public function testCanBeCreated(): void
{
global $config;
$resolver = new \SCCP\Resolve\Resolver($config);
$this->assertInstanceOf(
\SCCP\Resolve\Resolver::class,
$resolver
);
}
}