From 51b379a2313b435a54bffcb3195ebd7aa70db436 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 12 Dec 2012 16:49:51 +0100 Subject: [PATCH 1/2] Update ChangeLog. --- ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog.md b/ChangeLog.md index 527e0453b0a..9b8549159b9 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -73,6 +73,7 @@ PHPUnit 3.7.0 * Implemented #377: Show messages and stracktraces in JSON output for skipped and incomplete tests. * Implemented #424: Added `assertJson*` functions that work like the existing `assertXml*` functions. * Implemented #492: PHPUnit now provides a `configuration.xsd` schema file at [http://schema.phpunit.de/configuration.xsd]() that can be used to validate your `phpunit.xml` and `phpunit.xml.dist` configuration files. +* Implemented #495: Added `--testsuite` argument, allowing to filter files/directory by parent testsuite name attribute. * Implemented #504: Expanded the `@requires` annotation to allow for checking the existence of functions and extensions using multiple `@requires function name` statements. * 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. * Implemented #512: Test listeners now trigger one autoload call instead of being silently ignored when the class was not loaded. From a0bccf3f40b7d42d4a1343e3f63bcfa8a8568745 Mon Sep 17 00:00:00 2001 From: Oguz Bilgic Date: Fri, 14 Dec 2012 12:54:18 -0800 Subject: [PATCH 2/2] Fix typo in README.md file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 397be60c8a0..48784847919 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ PHPUnit is the de-facto standard for unit testing in PHP projects. It provides b ## Installation -There a three supported ways of installing PHPUnit. +There are three supported ways of installing PHPUnit. You can use the [PEAR Installer](http://pear.php.net/manual/en/guide.users.commandline.cli.php) or [Composer](http://getcomposer.org/) to download and install PHPUnit as well as its dependencies. You can also download a [PHP Archive (PHAR)](http://php.net/phar) of PHPUnit that has all required (as well as some optional) dependencies of PHPUnit bundled in a single file.