Fix PHPUnit unit and integration tests

Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
This commit is contained in:
Daniel Rudolf 2021-04-16 19:08:23 +02:00
Родитель 472a30d719
Коммит 6d2480df04
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A061F02CD8DE4538
4 изменённых файлов: 10 добавлений и 9 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -8,6 +8,7 @@ css/*.map
js/*
nbproject/
node_modules/
tests/.phpunit.result.cache
npm-debug.log
vendor
Thumbs.db

Просмотреть файл

@ -21,7 +21,7 @@
*
*/
namespace OCA\Polls\Tests\Integration;
namespace OCA\Polls\Tests\Integration\App;
use OCP\AppFramework\App;
use PHPUnit\Framework\TestCase;

Просмотреть файл

@ -1,12 +1,12 @@
<phpunit bootstrap="bootstrap.php" colors="true">
<testsuites>
<testsuite name="integration-app">
<directory>Integration/app</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./../lib</directory>
<directory suffix=".php">../lib</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="integration">
<directory>./Integration</directory>
</testsuite>
</testsuites>
</phpunit>

Просмотреть файл

@ -1,7 +1,7 @@
<phpunit bootstrap="./bootstrap.php" colors="true">
<phpunit bootstrap="bootstrap.php" colors="true">
<filter>
<whitelist>
<directory suffix=".php">lib</directory>
<directory suffix=".php">../lib</directory>
</whitelist>
</filter>
<testsuites>