/**
* Run a successful test. value should be valid.
*/
private void runPassTest(String value) throws Exception {
NegativeInteger oNegativeInteger = null;
try {
oNegativeInteger = new NegativeInteger(value);
}
catch (Exception e) { // catch the validation exception
}
assertEquals("unsigned int not equal" +
value, oNegativeInteger.toString(), value);
}