* Test that a value that is not in the list works.
*/
public void testMismatchWord() {
ValueConstraint constraint = new ListContains("epsilon");
assertFalse("Mismatch word matched",
constraint.satisfied("alpha beta gamma"));
}
}
/*
===========================================================================