Skip to content

Commit 3ca3854

Browse files
committed
ChangeLog for sebastianbergmann#492 and putting the files in the place I think the could go
1 parent 2b08543 commit 3ca3854

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

ChangeLog.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ PHPUnit 3.7.0
1414
* Implemented #333: Improved reporting when there are unused CLI arguments to avoid misconceptions.
1515
* Implemented #377: Show messages and stracktraces in JSON output for skipped and incomplete tests.
1616
* Implemented #424: Added `assertJson*` functions that work like the existing `assertXml*` functions.
17+
* Implemented #492: PHPUnit now provides a `phpunit.xsd` schema file at [http://phpunit.de/phpunit.xsd]() that can be used to validate your phpunit.xml file.
1718
* Implemented #504: Expanded the `@requires` annotation to allow for checking the existence of functions and extensions using multiple `@requires function name` statements.
1819
* Implemented #508 #86: `@expectedExceptionCode` and `@expectedExceptionMessage` can now use constants like `Classname::CONST` as their parameters. They will get evaluated if the class constant exists and used for comparison so test authors can avoid duplication.
1920
* Implemented #512: Test listeners now trigger one autoload call instead of being silently ignored when the class was not loaded.

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- Generated by PHP Project Wizard (PPW) 1.1.0-dev on Sat Mar 12 12:47:10 CET 2011 -->
33

44
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:noNamespaceSchemaLocation="phpunit.xsd"
5+
xsi:noNamespaceSchemaLocation="http://phpunit.de/phpunit.xsd"
66
bootstrap="PHPUnit/Autoload.php"
77
backupGlobals="false"
88
verbose="true">

phpunit.xsd

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
33
<xs:annotation>
44
<xs:documentation source="http://www.phpunit.de/manual/3.7/en/appendixes.configuration.html">
5-
This Schema file defines the rules by which the XML configuration file of PHPUnit 3.7 may be structured.
6-
</xs:documentation>
5+
This Schema file defines the rules by which the XML configuration file of PHPUnit 3.7 may be structured.
6+
</xs:documentation>
77
<xs:appinfo source="http://www.phpunit.de/manual/current/en/appendixes.configuration.html"/>
88
</xs:annotation>
99
<xs:element name="phpunit" type="phpUnitType">
@@ -248,4 +248,4 @@
248248
</xs:sequence>
249249
<xs:attribute name="name" type="xs:string" use="required"/>
250250
</xs:complexType>
251-
</xs:schema>
251+
</xs:schema>

0 commit comments

Comments
 (0)