assertEquals(new Integer(0), t.translate(null, null, null, null));
}
public void testIntLow()
{
IntTranslator t = new IntTranslator("min=5,max=200");
try
{
t.translate(null, null, "3", null);
unreachable();
}
catch (ApplicationRuntimeException ex)
{
assertExceptionSubstring(ex, RulesMessages.minIntValue("3", 5));