|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit |
3 | | - backupGlobals="false" |
4 | | - backupStaticAttributes="false" |
5 | | - colors="true" |
6 | | - convertErrorsToExceptions="true" |
7 | | - convertNoticesToExceptions="true" |
8 | | - convertWarningsToExceptions="true" |
9 | | - processIsolation="false" |
10 | | - stopOnFailure="false" |
11 | | - bootstrap="test/bootstrap.php" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + backupGlobals="false" |
| 5 | + colors="true" |
| 6 | + processIsolation="false" |
| 7 | + stopOnFailure="false" |
| 8 | + bootstrap="test/bootstrap.php" |
| 9 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" |
| 10 | + cacheDirectory=".phpunit.cache" |
| 11 | + backupStaticProperties="false" |
12 | 12 | > |
13 | 13 | <testsuites> |
14 | 14 | <testsuite name="Framework Test Suite"> |
15 | | - <file>test/Framework.php</file> |
16 | | - <file>test/Decorator.php</file> |
17 | | - <file>test/Schema.php</file> |
18 | | - <file>test/Fieldset.php</file> |
19 | | - <file>test/Fieldset/Validator.php</file> |
20 | | - <file>test/Field/AbstractField.php</file> |
21 | | - <file>test/Field/Active.php</file> |
22 | | - <file>test/Field/Created.php</file> |
23 | | - <file>test/Field/FieldRegistry.php</file> |
24 | | - <file>test/Field/None.php</file> |
25 | | - <file>test/Field/Updated.php</file> |
26 | | - <file>test/Format/AbstractFormatter.php</file> |
27 | | - <file>test/Format/FormatterRegistry.php</file> |
28 | | - <file>test/Format/Hide.php</file> |
29 | | - <file>test/Format/None.php</file> |
30 | | - <file>test/Schema/Validator.php</file> |
31 | | - <file>test/Validation/AbstractValidator.php</file> |
32 | | - <file>test/Validation/Required.php</file> |
33 | | - <file>test/Validation/Unique.php</file> |
34 | | - <file>test/Validation/ValidatorRegistry.php</file> |
35 | | - <file>test/SystemException.php</file> |
36 | | - <file>test/Package/Config/ConfigException.php</file> |
37 | | - <file>test/Package/Config/ConfigPackage.php</file> |
38 | | - <file>test/Package/Event/EventPackage.php</file> |
39 | | - <file>test/Package/Host/HostPackage.php</file> |
40 | | - <file>test/Package/Http/HttpPackage.php</file> |
41 | | - <file>test/Package/PDO/PDOPackage.php</file> |
| 15 | + <file>test/FrameworkTest.php</file> |
| 16 | + <file>test/DecoratorTest.php</file> |
| 17 | + <file>test/SchemaTest.php</file> |
| 18 | + <file>test/FieldsetTest.php</file> |
| 19 | + <file>test/Fieldset/ValidatorTest.php</file> |
| 20 | + <file>test/Field/AbstractFieldTest.php</file> |
| 21 | + <file>test/Field/ActiveTest.php</file> |
| 22 | + <file>test/Field/CreatedTest.php</file> |
| 23 | + <file>test/Field/FieldRegistryTest.php</file> |
| 24 | + <file>test/Field/NoneTest.php</file> |
| 25 | + <file>test/Field/UpdatedTest.php</file> |
| 26 | + <file>test/Format/AbstractFormatterTest.php</file> |
| 27 | + <file>test/Format/FormatterRegistryTest.php</file> |
| 28 | + <file>test/Format/HideTest.php</file> |
| 29 | + <file>test/Format/NoneTest.php</file> |
| 30 | + <file>test/Schema/ValidatorTest.php</file> |
| 31 | + <file>test/Validation/AbstractValidatorTest.php</file> |
| 32 | + <file>test/Validation/RequiredTest.php</file> |
| 33 | + <file>test/Validation/UniqueTest.php</file> |
| 34 | + <file>test/Validation/ValidatorRegistryTest.php</file> |
| 35 | + <file>test/SystemExceptionTest.php</file> |
| 36 | + <file>test/Package/Config/ConfigExceptionTest.php</file> |
| 37 | + <file>test/Package/Config/ConfigPackageTest.php</file> |
| 38 | + <file>test/Package/Event/EventPackageTest.php</file> |
| 39 | + <file>test/Package/Host/HostPackageTest.php</file> |
| 40 | + <file>test/Package/Http/HttpPackageTest.php</file> |
| 41 | + <file>test/Package/PDO/PDOPackageTest.php</file> |
42 | 42 | </testsuite> |
43 | 43 | </testsuites> |
44 | 44 |
|
45 | | - <coverage processUncoveredFiles="false" pathCoverage="true"> |
| 45 | + <coverage pathCoverage="true"/> |
| 46 | + <source> |
46 | 47 | <include> |
47 | 48 | <directory suffix=".php">./src</directory> |
48 | 49 | </include> |
|
65 | 66 | <file>src/Package/Language/.incept.php</file> |
66 | 67 | <file>src/Package/Timezone/.incept.php</file> |
67 | 68 | </exclude> |
68 | | - </coverage> |
| 69 | + </source> |
69 | 70 | </phpunit> |
0 commit comments