我正在尝试覆盖/修改Test::Unit::TestCase测试的teardown函数。在测试的拆卸过程中(在测试结束后),我想做一些额外的事情。我试过了,但它不起作用(继续执行原始的teardown): module Unit def teardown_modified# do modifications end
alias tear
我希望在我的junit测试用例中有一个有条件的teardown,例如testmethod1()//condition to be tested@Teardown//teardownmethod here在teardown中,我想要有这样的条件then execute teardown 使用junit可以实现这样的场景吗
();当我将tearDown()方法应用于我的测试类时,我会得到一个错误,告诉the tearDown() must be compatible with Illuminate\Foundation\Testing\TestCase::tearDown()我做错了什么?我想登录到setUp()方法中,然后再次在tearDown中注销,这样我就可以独立地执行测试了。即使我没有向tearDown()方法添加任何代码,除了parent::tearDown();之外,我也会得到一