MockHttpServletRequest request = new MockHttpServletRequest();
request.addParameter("testForm.__present", "true");
request.addParameter("testForm.myCheckBox", "true");
request.addParameter("testForm.myLongText", "108");
request.addParameter("testForm.myDateTime", (String) null);
// create helper
ConstraintGroupHelper groupHelper = new ConstraintGroupHelper();
testForm.getElement("myDateTime").setConstraint(
groupHelper.createGroupedConstraint(new NotEmptyConstraint(), "active"));