(Object[] o1, Object[] o2)
| 87 | // Sort the result by filename |
| 88 | Collections.sort(testcases, new Comparator<Object[]>() { |
| 89 | @Override |
| 90 | public int compare(Object[] o1, Object[] o2) { |
| 91 | return ((String) o1[0]).compareTo((String) o2[0]); |
| 92 | } |
| 93 | }); |
| 94 | return testcases; |
| 95 | } |