1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00
Arsse/tests/phpunit.xml

105 lines
4 KiB
XML
Raw Normal View History

2017-02-06 00:00:57 +00:00
<?xml version="1.0"?>
<phpunit
2017-02-16 20:29:42 +00:00
colors="true"
2017-10-02 19:42:15 +00:00
bootstrap="bootstrap.php"
convertErrorsToExceptions="false"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
2017-02-16 20:29:42 +00:00
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
stopOnError="true">
2017-02-06 00:00:57 +00:00
2017-07-20 22:36:03 +00:00
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../lib</directory>
</whitelist>
</filter>
2017-03-31 19:27:59 +00:00
<testsuites>
<testsuite name="Exceptions">
2017-12-07 20:46:49 +00:00
<file>cases/Exception/TestException.php</file>
2017-03-31 19:27:59 +00:00
</testsuite>
<testsuite name="Localization">
2017-12-22 03:47:19 +00:00
<file>cases/Lang/TestBasic.php</file>
<file>cases/Lang/TestComplex.php</file>
<file>cases/Lang/TestErrors.php</file>
2017-03-31 19:27:59 +00:00
</testsuite>
<testsuite name="Configuration">
2017-12-07 20:46:49 +00:00
<file>cases/Conf/TestConf.php</file>
2017-03-31 19:27:59 +00:00
</testsuite>
2017-09-28 14:16:24 +00:00
<testsuite name="Sundry">
2017-12-07 20:46:49 +00:00
<file>cases/Misc/TestValueInfo.php</file>
<file>cases/Misc/TestDate.php</file>
2017-12-07 20:46:49 +00:00
<file>cases/Misc/TestContext.php</file>
2017-09-28 14:16:24 +00:00
</testsuite>
2017-03-31 19:27:59 +00:00
<testsuite name="User management">
2017-12-22 03:47:19 +00:00
<file>cases/User/TestInternal.php</file>
<file>cases/User/TestUser.php</file>
2017-03-31 19:27:59 +00:00
</testsuite>
<testsuite name="Feed parser">
2017-12-22 03:47:19 +00:00
<file>cases/Feed/TestFetching.php</file>
2017-12-07 20:46:49 +00:00
<file>cases/Feed/TestFeed.php</file>
</testsuite>
<testsuite name="Database drivers">
2017-12-07 20:46:49 +00:00
<file>cases/Db/TestTransaction.php</file>
<file>cases/Db/TestResultAggregate.php</file>
<file>cases/Db/TestResultEmpty.php</file>
2018-11-23 00:55:54 +00:00
<file>cases/Db/SQLite3/TestResult.php</file>
<file>cases/Db/SQLite3/TestStatement.php</file>
2017-12-22 03:47:19 +00:00
<file>cases/Db/SQLite3/TestCreation.php</file>
<file>cases/Db/SQLite3/TestDriver.php</file>
<file>cases/Db/SQLite3/TestUpdate.php</file>
2018-12-06 22:46:00 +00:00
<file>cases/Db/SQLite3PDO/TestResult.php</file>
2018-11-23 00:55:54 +00:00
<file>cases/Db/SQLite3PDO/TestStatement.php</file>
2017-12-22 16:45:24 +00:00
<file>cases/Db/SQLite3PDO/TestCreation.php</file>
<file>cases/Db/SQLite3PDO/TestDriver.php</file>
<file>cases/Db/SQLite3PDO/TestUpdate.php</file>
2018-11-17 02:20:54 +00:00
2018-12-06 22:46:00 +00:00
<file>cases/Db/PostgreSQL/TestResult.php</file>
2018-11-23 00:55:54 +00:00
<file>cases/Db/PostgreSQL/TestStatement.php</file>
<file>cases/Db/PostgreSQL/TestCreation.php</file>
<file>cases/Db/PostgreSQL/TestDriver.php</file>
<file>cases/Db/PostgreSQL/TestUpdate.php</file>
<file>cases/Db/PostgreSQLPDO/TestResult.php</file>
<file>cases/Db/PostgreSQLPDO/TestStatement.php</file>
<file>cases/Db/PostgreSQLPDO/TestCreation.php</file>
<file>cases/Db/PostgreSQLPDO/TestDriver.php</file>
<file>cases/Db/PostgreSQLPDO/TestUpdate.php</file>
<file>cases/Db/MySQLPDO/TestResult.php</file>
<file>cases/Db/MySQLPDO/TestStatement.php</file>
<file>cases/Db/MySQLPDO/TestCreation.php</file>
<file>cases/Db/MySQLPDO/TestDriver.php</file>
<file>cases/Db/MySQLPDO/TestUpdate.php</file>
2017-03-31 19:27:59 +00:00
</testsuite>
<testsuite name="Database functions">
<file>cases/Db/SQLite3/TestDatabase.php</file>
<file>cases/Db/SQLite3PDO/TestDatabase.php</file>
<file>cases/Db/PostgreSQL/TestDatabase.php</file>
<file>cases/Db/PostgreSQLPDO/TestDatabase.php</file>
<file>cases/Db/MySQLPDO/TestDatabase.php</file>
2017-03-31 19:27:59 +00:00
</testsuite>
<testsuite name="REST">
<file>cases/REST/TestTarget.php</file>
<file>cases/REST/TestREST.php</file>
</testsuite>
<testsuite name="NCNv1">
<file>cases/REST/NextCloudNews/TestVersions.php</file>
<file>cases/REST/NextCloudNews/TestV1_2.php</file>
<file>cases/REST/NextCloudNews/PDO/TestV1_2.php</file>
</testsuite>
<testsuite name="TTRSS">
<file>cases/REST/TinyTinyRSS/TestAPI.php</file>
<file>cases/REST/TinyTinyRSS/TestIcon.php</file>
2018-01-12 14:41:13 +00:00
<file>cases/REST/TinyTinyRSS/PDO/TestAPI.php</file>
2017-03-31 19:27:59 +00:00
</testsuite>
2018-11-06 17:32:28 +00:00
<testsuite name="Admin tools">
2017-12-07 20:46:49 +00:00
<file>cases/Service/TestService.php</file>
2018-11-06 17:32:28 +00:00
<file>cases/CLI/TestCLI.php</file>
</testsuite>
2017-03-31 19:27:59 +00:00
</testsuites>
2018-11-06 17:32:28 +00:00
</phpunit>