在 nunit 中,假设我们有多个实际值要返回特定函数,我应该如何构建 assert 函数?我应该使用哪个功能?
前任:
int function(..) {
.
.
.
a = some_operation();
if (a == 0)
result = 0;
else if (a == some_predefined_value)
result = 1;
else if (a == some_predefined_value)
result = 2;
else
correct_usage();
return result;
}