(long l)
| 51 | } |
| 52 | |
| 53 | private static void testLongLiteral(long l) { |
| 54 | assertEquals(LongLiteral.get(l).getValue(), l); |
| 55 | } |
| 56 | |
| 57 | private static void testFloatLiteral(float f) { |
| 58 | assertEquals(FloatLiteral.get(f).getValue(), f, 0); |
no test coverage detected