public void testComputeForTofu() {
RoundFunction roundFunction = new RoundFunction();
SoyData float0 = FloatData.forValue(9753.141592653590);
assertEquals(IntegerData.forValue(9753),
roundFunction.computeForTofu(ImmutableList.<SoyData>of(float0)));
SoyData numDigitsAfterPt = IntegerData.ZERO;
assertEquals(IntegerData.forValue(9753),
roundFunction.computeForTofu(ImmutableList.of(float0, numDigitsAfterPt)));
numDigitsAfterPt = IntegerData.forValue(4);
assertEquals(FloatData.forValue(9753.1416),