(int expectedSize, EnumSet<?> set)
| 100 | } |
| 101 | |
| 102 | private static void assertSize(int expectedSize, EnumSet<?> set) { |
| 103 | if (set.size() != expectedSize) { |
| 104 | throw new RuntimeException("expected the set to be size=" + expectedSize + ", actual=" + set.size()); |
| 105 | } |
| 106 | } |
| 107 | } |
no test coverage detected