(T a, T b)
| 415 | } |
| 416 | |
| 417 | static <T> void TestEq(T a, T b) { |
| 418 | if (!a.equals(b)) { |
| 419 | System.out.println("" + a.getClass().getName() + " " + b.getClass().getName()); |
| 420 | System.out.println("FlatBuffers test FAILED: \'" + a + "\' != \'" + b + "\'"); |
| 421 | assert false; |
| 422 | System.exit(1); |
| 423 | } |
| 424 | } |
| 425 | } |
no test coverage detected