我有这样的测试方法
[TestMethod]
public void TestMethod1()
{
var smthing= new doSmthing();
smthing.doSomefunction("Test Service","Test Operation");
// do something next
var 2ndsmthing = do2ndSmthing();
2ndsmthing.do2ndSomeThing("Test","Method")
}
相信我这两个函数或调用需要在相同的测试方法下,如果在调用第一个方法时出现问题,我如何防止测试停止?即在调用 doSmthing() 时,我听说在测试方法中使用 Try...Catch 块是个坏主意。我该如何解决这个问题?
任何想法都非常感谢。