Home | History | Annotate | Download | only in regression

Lines Matching refs:result

21         boolean result = true;
23 result &= !("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".isEmpty());
25 if (!result) throw new RuntimeException();
29 boolean result = true;
31 result &= ("".isEmpty());
33 if (!result) throw new RuntimeException();
37 boolean result = true;
39 result &= !("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".length() == 0);
41 if (!result) throw new RuntimeException();
45 boolean result = true;
47 result &= !"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".equals("");
49 if (!result) throw new RuntimeException();