public void testMerge() {
FlowValidationResult result = new ReportAllValidationResult(
new MissingRequiredTracking("firstname"));
FlowValidationResult result1 = new ReportAllValidationResult();
result1.merge(result);
assertFalse(result1.isValid());
}
}