MCPcopy Create free account
hub / github.com/amazon-ion/ion-java / checkDecimal

Method checkDecimal

src/test/java/com/amazon/ion/DecimalTest.java:269–275  ·  view source on GitHub ↗
(int unscaled, int scale, BigDecimal actual)

Source from the content-addressed store, hash-verified

267 }
268
269 public void checkDecimal(int unscaled, int scale, BigDecimal actual)
270 {
271 assertEquals("decimal unscaled value",
272 unscaled, actual.unscaledValue().intValue());
273 assertEquals("decimal scale",
274 scale, actual.scale());
275 }
276
277 @Test
278 public void testNegativeZeroEquality()

Callers 3

testNegativeZeroMethod · 0.95
testBinaryDecimalsMethod · 0.95
testSetValueMethod · 0.95

Calls 2

intValueMethod · 0.65
assertEqualsMethod · 0.45

Tested by

no test coverage detected