blob: 11192ce5997993fb562fa9b205dd683cb40d6f31 [file] [log] [blame]
package org.myorganization.validator;
import java.io.StringWriter;
import javax.faces.component.html.HtmlInputText;
import javax.faces.validator.ValidatorException;
import junit.framework.Test;
import org.apache.shale.test.base.AbstractJsfTestCase;
import org.apache.shale.test.mock.MockResponseWriter;
public class OddNumberValidatorTest extends AbstractJsfTestCase
{
public static Test suite()
{
return null;
}
private MockResponseWriter writer ;
private OddNumberValidator oddNumValidator;
public OddNumberValidatorTest(String name)
{
super(name);
}
public void setUp() throws Exception
{
super.setUp();
oddNumValidator = new OddNumberValidator();
writer = new MockResponseWriter(new StringWriter(), null, null);
facesContext.setResponseWriter(writer);
}
public void tearDown() throws Exception
{
super.tearDown();
oddNumValidator = null;
writer = null;
}
public void testOddNumInput() throws Exception
{
boolean noExceptionsThrown = true;
try
{
oddNumValidator.validate(facesContext, new HtmlInputText(), new Integer(3));
}
catch(ValidatorException ve)
{
noExceptionsThrown = false;
}
assertTrue(noExceptionsThrown);
}
public void testEvenNumInput() throws Exception
{
boolean noExceptionsThrown = true;
try
{
oddNumValidator.validate(facesContext, new HtmlInputText(), new Integer(8));
}
catch(ValidatorException ve)
{
noExceptionsThrown = false;
}
assertFalse(noExceptionsThrown);
}
}