diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-07-16 13:24:18 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-07-16 13:26:14 +0200 |
commit | 31a40cfc446c9586f89a4aa69ef76d76d469e5a4 (patch) | |
tree | a68141ff714b1e91027d551d38fabc792bd498e7 /fai_gestion/plugins/CustomTheme/phpunit.xml.dist | |
parent | c9939556d486da50f180ce424dd456252b1e0349 (diff) | |
download | chd_gestion-31a40cfc446c9586f89a4aa69ef76d76d469e5a4.zip chd_gestion-31a40cfc446c9586f89a4aa69ef76d76d469e5a4.tar.gz chd_gestion-31a40cfc446c9586f89a4aa69ef76d76d469e5a4.tar.bz2 |
Bake : setup and create empty CustomTheme
Diffstat (limited to 'fai_gestion/plugins/CustomTheme/phpunit.xml.dist')
-rw-r--r-- | fai_gestion/plugins/CustomTheme/phpunit.xml.dist | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/fai_gestion/plugins/CustomTheme/phpunit.xml.dist b/fai_gestion/plugins/CustomTheme/phpunit.xml.dist new file mode 100644 index 0000000..399f43d --- /dev/null +++ b/fai_gestion/plugins/CustomTheme/phpunit.xml.dist @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<phpunit + colors="true" + processIsolation="false" + stopOnFailure="false" + syntaxCheck="false" + bootstrap="tests/bootstrap.php" + > + <php> + <ini name="memory_limit" value="-1"/> + <ini name="apc.enable_cli" value="1"/> + </php> + + <!-- Add any additional test suites you want to run here --> + <testsuites> + <testsuite name="CustomTheme"> + <directory>tests/TestCase/</directory> + </testsuite> + </testsuites> + + <!-- Setup a listener for fixtures --> + <listeners> + <listener class="\Cake\TestSuite\Fixture\FixtureInjector"> + <arguments> + <object class="\Cake\TestSuite\Fixture\FixtureManager"/> + </arguments> + </listener> + </listeners> + + <filter> + <whitelist> + <directory suffix=".php">src/</directory> + </whitelist> + </filter> + +</phpunit> |