PluginProbe
WPIDE – File Manager & Code Editor / 2.3.2
WPIDE – File Manager & Code Editor v2.3.2
3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 3.4 All 54 releases
wpide / git / phpunit.xml.dist

phpunit.xml.dist in WPIDE – File Manager & Code Editor 2.3.2, at git/phpunit.xml.dist

30 lines 823 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <phpunit backupGlobals="false"
4 backupStaticAttributes="false"
5 colors="true"
6 convertErrorsToExceptions="true"
7 convertNoticesToExceptions="true"
8 convertWarningsToExceptions="true"
9 processIsolation="false"
10 stopOnFailure="false"
11 syntaxCheck="false"
12 bootstrap="tests/bootstrap.php"
13 >
14 <php>
15 <const name="GIT_BINARY" value="/usr/bin/git"/>
16 <const name="TEST_REPO_PATH" value="false"/>
17 </php>
18 <testsuites>
19 <testsuite name="TEQneers Git Streamwrapper Test Suite">
20 <directory>./tests/TQ/</directory>
21 </testsuite>
22 </testsuites>
23
24 <filter>
25 <whitelist>
26 <directory>./src/TQ/</directory>
27 </whitelist>
28 </filter>
29 </phpunit>
30