Am的if条件为OR运算符,后跟else块。我尝试为If条件创建一个测试用例。
我该如何编写一个满足我所有条件的测试用例。
public class TestJunit {
public static void main(String args[]) {
String a = "Apple";
boolean b = true;
int c = 100;
if (a.equalsIgnoreCase("Apple") || b || c == 100) {
System.out.println("Atleast one condition is matching..");
} else {
System.out.println("Nothing is matching");
}
}
}
请找到我的单元测试用例。
import static org.junit.Assert.*;
import org.junit.Test;
public class TestJunitTest {
@Test
public void test() {
fail("Not yet implemented");
}
}