Changeset 25165 for trunk/phpunit.xml.dist
- Timestamp:
- 08/29/2013 06:39:34 PM (11 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpunit.xml.dist
r25158 r25165 1 1 <phpunit 2 bootstrap=" includes/bootstrap.php"2 bootstrap="tests/phpunit/includes/bootstrap.php" 3 3 backupGlobals="false" 4 4 colors="true" … … 7 7 <!-- Default test suite to run all tests --> 8 8 <testsuite> 9 <directory suffix=".php">tests </directory>10 <exclude>tests/ actions/closures.php</exclude>11 <exclude>tests/ image/editor.php</exclude>12 <exclude>tests/ image/editor_gd.php</exclude>13 <exclude>tests/ image/editor_imagick.php</exclude>14 <file phpVersion="5.3.0">tests/ actions/closures.php</file>15 <file phpVersion="5.3.0">tests/ image/editor.php</file>16 <file phpVersion="5.3.0">tests/ image/editor_gd.php</file>17 <file phpVersion="5.3.0">tests/ image/editor_imagick.php</file>9 <directory suffix=".php">tests/phpunit/tests</directory> 10 <exclude>tests/phpunit/tests/actions/closures.php</exclude> 11 <exclude>tests/phpunit/tests/image/editor.php</exclude> 12 <exclude>tests/phpunit/tests/image/editor_gd.php</exclude> 13 <exclude>tests/phpunit/tests/image/editor_imagick.php</exclude> 14 <file phpVersion="5.3.0">tests/phpunit/tests/actions/closures.php</file> 15 <file phpVersion="5.3.0">tests/phpunit/tests/image/editor.php</file> 16 <file phpVersion="5.3.0">tests/phpunit/tests/image/editor_gd.php</file> 17 <file phpVersion="5.3.0">tests/phpunit/tests/image/editor_imagick.php</file> 18 18 </testsuite> 19 19 </testsuites> … … 24 24 </groups> 25 25 <logging> 26 <log type="junit" target=" build/logs/junit.xml" logIncompleteSkipped="false"/>26 <log type="junit" target="tests/phpunit/build/logs/junit.xml" logIncompleteSkipped="false"/> 27 27 </logging> 28 28 </phpunit>
Note: See TracChangeset
for help on using the changeset viewer.