make test directory configurable

This commit is contained in:
Brian Faust
2021-05-03 18:28:20 +03:00
parent d2babb1331
commit 567af55a19
11 changed files with 43 additions and 15 deletions

View File

@ -8,3 +8,8 @@ function version(): string
{
return '1.0.4';
}
function testDirectory(string $file = ''): string
{
return TestSuite::getInstance()->testPath . $file;
}