Package org.amplafi.flow.validation

Examples of org.amplafi.flow.validation.ExceptionTracking


    public void testAddDifferentTrackings() {
        ReportAllValidationResult result = new ReportAllValidationResult(
                new MissingRequiredTracking("firstname"),
                new InconsistencyTracking("field not a number", "username"),
                new MismatchTracking("field1", "field2"),
                new ExceptionTracking("field", new RuntimeException())
        );

        assertFalse(result.isValid());
        assertEquals(result.getTrackings().size(), 4);
    }
View Full Code Here

TOP

Related Classes of org.amplafi.flow.validation.ExceptionTracking

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.