Package jqual

Examples of jqual.Analysis


  public void runStandardTest(String name)  {
    System.out.print("Running test on " + name + "...");
    IOpenable[] inputs = getIOpenables(new String[] { name });
    if (inputs == null)
      return;
    Analysis analysis;
    analysis = JqualPlugin.analyze(inputs);
   
    Map<String, Set<String>> results = analysis.getQualifierResults();

    IFile ok = project.getFile(name + "." + getPrefCode() + ".ok");
    if (ok.exists()){
      Map<String, Set<String>> old = readResults(ok);
      if (results.equals(old)) {
View Full Code Here


  public void runStandardTestOld(String name)  {
    System.out.print("Running test on " + name + "...");
    IOpenable[] inputs = getIOpenables(new String[] { name });
    if (inputs == null)
      return;
    Analysis analysis;
    analysis = JqualPlugin.analyze(inputs);
    IFile ok = project.getFile(name + ".ok");
    if (ok.isAccessible()) {
      compare(name, analysis, ok);
    }
View Full Code Here

TOP

Related Classes of jqual.Analysis

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.