(boolean v)
| 8 | |
| 9 | public class Tree { |
| 10 | private static void expect(boolean v) { |
| 11 | if (! v) throw new RuntimeException(); |
| 12 | } |
| 13 | |
| 14 | private static String printList(TreeSet<?> list) { |
| 15 | StringBuilder sb = new StringBuilder(); |
no outgoing calls
no test coverage detected