1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 06:32:34 +01:00
flox/backend/phpunit.xml
Viktor Geringer 5818026f67 Refactor models (#27)
* change parser fixtures

* move alternativeTitle method to other class

* refactor tests

* start with alternative title

* use app helper method

* refactor add items

* change fixtures structure

* alternative title

* episode service

* item service

* file parser test

* flatten item controller

* git ignorecase
2017-02-13 21:17:25 +01:00

30 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="TMDB_API_KEY" value="notfound"/>
</php>
</phpunit>