用于JS的tape测试框架具有方便的功能,可以告诉框架计划执行多少个断言。
来自this article:
test( 'My second test', function( assert ) {
assert.plan( 2 ) ; // Specifies that we will be executing exactly two tests
assert.equal( 1 + 1, 2, '1 + 1 = 2' ) ;
assert.equal( 2 + 2, 4, '2 + 2 = 4' ) ;
} ) ;
PHPUnit中有类似的功能吗?