(byte[][] wanted)
| 1548 | |
| 1549 | // check that the byte arrays appear in any order, but otherwise match exactly |
| 1550 | private static byte[][] eqAnyOrder(byte[][] wanted) { |
| 1551 | return argThat(new EqAnyOrder(wanted)); |
| 1552 | } |
| 1553 | |
| 1554 | private static class EqAnyOrder extends ArgumentMatcher<byte[][]> { |
| 1555 |
no outgoing calls
no test coverage detected