Package org.apache.sqoop.validation.Validation

Examples of org.apache.sqoop.validation.Validation.FormInput


    /* toString() method check */
    assertEquals("form\\.input", fiOne.toString());

    // Checking null as input field (form validation)
    Validation.FormInput fi3 = new FormInput("form");
    assertEquals("form", fi3.getForm());
    assertNull(fi3.getInput());
    assertEquals("form", fi3.toString());

  }
View Full Code Here

TOP

Related Classes of org.apache.sqoop.validation.Validation.FormInput

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.