()
| 342 | |
| 343 | |
| 344 | @Test |
| 345 | public void testSetValue() |
| 346 | { |
| 347 | IonDecimal value = decimal("1.23"); |
| 348 | value.setValue(123); |
| 349 | checkDecimal(123, 0, value.bigDecimalValue()); |
| 350 | } |
| 351 | |
| 352 | @Test |
| 353 | public void testIsNumeric() |
nothing calls this directly
no test coverage detected