Package hudson.util.FormFieldValidatorTest.BrokenFormValidatorBuilder

Examples of hudson.util.FormFieldValidatorTest.BrokenFormValidatorBuilder.DescriptorImpl


    /**
     * Make sure that the validation methods are really called by testing a negative case.
     */
    @Bug(3382)
    public void testNegative() throws Exception {
        DescriptorImpl d = new DescriptorImpl();
        Publisher.all().add(d);
        try {
            FreeStyleProject p = createFreeStyleProject();
            p.getPublishersList().add(new BrokenFormValidatorBuilder());
            new WebClient().getPage(p,"configure");
View Full Code Here

TOP

Related Classes of hudson.util.FormFieldValidatorTest.BrokenFormValidatorBuilder.DescriptorImpl

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.