diff --git a/test/TestCase.php b/test/TestCase.php new file mode 100644 index 0000000..b68c7a2 --- /dev/null +++ b/test/TestCase.php @@ -0,0 +1,28 @@ +setTestNamespace('Tests\Units'); + if (file_exists('test/settings.ini')) { + $this->settings = parse_ini_file('test/settings.ini'); + } + else { + throw new Exception('Could not access test/settings.ini'); + } + + parent::__construct($score, $locale, $adapter); + } +}