Package org.databene.dbsanity.model

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

Related Classes of org.databene.dbsanity.model.SanityCheckFile

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.