(List<String> lst, String[] strs)
| 49 | // long as it's not annotated with @Test, it will |
| 50 | // not be automatically executed by JUnit. |
| 51 | private |
| 52 | void compare(List<String> lst, String[] strs) { |
| 53 | assertArrayEquals(lst.toArray(new String[0]), strs); |
| 54 | } |
| 55 | @Test |
| 56 | public void order() { |
| 57 | System.out.println("Running testOrder()"); |