This post originated from an RSS feed registered with PHP Buzz
by Mike Naberezny.
Original Post: Better PHPUnit Group Annotations
Feed Title: MikeNaberezny.com
Feed URL: http://mikenaberezny.com/category/php/feed/
Feed Description: Mike Naberezny blogs about PHP tricks, better PHP programming, test driven development, and other dynamic language topics.
Last week, Sebastian Bergmann wrote about the new support for TestNG-style grouping of tests in the upcoming PHPUnit 3.2. This feature allows individual test methods to be grouped with an @group annotation.
At my company, we typically organize our test case classes into high-level groups such as unit and functional. ...