Examples of SanityCheckFile


Examples of org.databene.dbsanity.model.SanityCheckFile

    return suite.countErredChecks();
  }

  private void copyCheckResults(SanityCheckSuite suite, SchemaChange schemaChange) {
    if (suite instanceof SanityCheckFile) {
      SanityCheckFile file  = (SanityCheckFile) suite;
      for (SanityCheck check : file.getChecks(true)) {
        StructuralChange<?> change = schemaChange.getSubChangeByCheckName(check.getName());
        if (change != null)
          change.setCheck(check);
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.