Removed resource tests, added util tests

This commit is contained in:
Alex Bilbie 2013-02-04 19:45:19 +00:00
parent d80b2935fc
commit 8a6823b78d

View File

@ -2,10 +2,10 @@
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="../tests/Bootstrap.php"> <phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="../tests/Bootstrap.php">
<testsuites> <testsuites>
<testsuite name="Authentication Server"> <testsuite name="Authentication Server">
<directory suffix="test.php">../tests/authentication</directory> <directory suffix="Test.php">../tests/authentication</directory>
</testsuite> </testsuite>
<testsuite name="Resource Server"> <testsuite name="Utility Methods">
<directory suffix="test.php">../tests/resource</directory> <directory suffix="Test.php">../tests/util</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<filter> <filter>
@ -13,7 +13,9 @@
<directory suffix=".php">PEAR_INSTALL_DIR</directory> <directory suffix=".php">PEAR_INSTALL_DIR</directory>
<directory suffix=".php">PHP_LIBDIR</directory> <directory suffix=".php">PHP_LIBDIR</directory>
<directory suffix=".php">../vendor/composer</directory> <directory suffix=".php">../vendor/composer</directory>
<directory suffix=".php">../vendor/mockery</directory>
<directory suffix=".php">../tests</directory> <directory suffix=".php">../tests</directory>
<directory suffix=".php">../testing</directory>
</blacklist> </blacklist>
</filter> </filter>
<logging> <logging>