public void testComputeForTofu() {
MaxFunction maxFunction = new MaxFunction();
SoyData float0 = FloatData.forValue(7.5);
SoyData float1 = FloatData.forValue(7.777);
assertEquals(FloatData.forValue(7.777),
maxFunction.computeForTofu(ImmutableList.of(float0, float1)));
SoyData integer0 = IntegerData.forValue(-7);
SoyData integer1 = IntegerData.forValue(-8);
assertEquals(IntegerData.forValue(-7),
maxFunction.computeForTofu(ImmutableList.of(integer0, integer1)));
}