Package org.cishell.testing.convertertester.core.tester.graphcomparison

Examples of org.cishell.testing.convertertester.core.tester.graphcomparison.RunningLog


public class SimpleGraphComparer implements NewGraphComparer {

  private RunningLog log;
 
  public ComparisonResult compare(Graph g1, Graph g2) {
    this.log = new RunningLog();
   
    if (g1 == null || g2 == null) {
      log.prepend("At least one of the provided graphs was null");
      return new ComparisonResult(false, log);
    }
View Full Code Here


 
  /**
   * Assuming it isn't so lossy that it loses edges or nodes.
   */
  public ComparisonResult compare(Graph g1, Graph g2) {
    this.log = new RunningLog();
   
    if (g1 == null || g2 == null) {
      log.prepend("At least one of the provided graphs was null");
      return new ComparisonResult(false, log);
    }
View Full Code Here

  private RunningLog log;
 
  public ComplexGraphComparer () {
   
    this.log = new RunningLog();
  }
View Full Code Here

  protected RunningLog getLog() {
    return this.log;
  }
 
  protected void clearLog() {
    this.log = new RunningLog();
  }
View Full Code Here

TOP

Related Classes of org.cishell.testing.convertertester.core.tester.graphcomparison.RunningLog

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.