是否有一个PHPUnit等效于磁带的assert.plan()?

时间:2019-04-02 15:44:35

标签: phpunit

用于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中有类似的功能吗?

0 个答案:

没有答案