@Test
public void tooBigOrSmallTest(){
final FactorialParser fp = new FactorialParser();
ParseResult pr=fp.parse(TokenList.createD("blah","factorial",LargeInteger.valueOf(-1),"blah"),1);
Assert.assertFalse("Ensure parse failed b/c it's a negative num", pr.isSuccess());
ParseResult pr2=fp.parse(TokenList.createD("blah","factorial",LargeInteger.valueOf(20),"blah"),1);
Assert.assertFalse("Ensure parse failed b/c it's a too big", pr2.isSuccess());
}