static void assertEqic(S x, S y) { assertEqic(null, x, y); } static void assertEqic(S msg, S x, S y) { if (!eqic(x, y)) fail((msg != null ? msg + ": " : "") + quote(x) + " != " + quote(y) + " [ic]"); }