我是单元测试的新手。这是我第一次写单元测试。我正在尝试使用 TestNG 框架编写单元测试。
class A {
public Return_type method1(param1, param2) {
for(var : tillSomeValue) {
try {
value = someMethod(var);
} catch (someException ex) {
/* do some calculation here with the value of thrown exception */
throw anotherException();
}
}
}
}
我想为这个类编写单元测试。有人能给我一些线索吗?