全部博文(315)
分类:
2007-12-02 00:33:56
从 3.2 开始支持 group 测试了,使用非常简单,只需要加上 @group 即可。
class TestTest extends PHPUnit_Framework_TestCase
{
/**
* @group a
*/
public function testOne()
{
}
/**
* @group a
* @group b
*/
public function testTwo()
{
}
}
?>
使用 –group 选项运行 group 测试:
# phpunit –group a TestTest
PHPUnit 3.2.0-dev by Sebastian Bergmann.
..
Time: 0 seconds
OK (2 tests)
# phpunit –group b TestTest
PHPUnit 3.2.0-dev by Sebastian Bergmann.
.
Time: 0 seconds
OK (1 test)