Package org.pirkaengine.form.validator

Examples of org.pirkaengine.form.validator.EndWithValidator


        target.apply("name", formMessage, new EndWithImpl("/"));
        assertThat(target.name, is("name"));
        assertThat(target.label, is("name"));
        assertThat(target.isRequired(), is(false));
        assertThat(target.validators.size(), is(1));
        assertThat(target.validators.get(0), is((Validator<String>) new EndWithValidator("/")));
    }
View Full Code Here


        target.apply("name", formMessage, new EndWithImpl("/", "custom_message"));
        assertThat(target.name, is("name"));
        assertThat(target.label, is("name"));
        assertThat(target.isRequired(), is(false));
        assertThat(target.validators.size(), is(1));
        assertThat(target.validators.get(0), is((Validator<String>) new EndWithValidator("/", "custom_message")));
    }   
View Full Code Here

TOP

Related Classes of org.pirkaengine.form.validator.EndWithValidator

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.