Package org.pentaho.platform.engine.services.solution

Examples of org.pentaho.platform.engine.services.solution.SolutionCompare


  }

  public void testSolutionCompare() {
    startTest();

    SolutionCompare compare = new SolutionCompare();
    String path1 = PentahoSystem.getApplicationContext().getSolutionPath( "test/platform" ); //$NON-NLS-1$
    String path2 = PentahoSystem.getApplicationContext().getSolutionPath( "test/dashboard" ); //$NON-NLS-1$
    compare.compare( path1, path2 );

    assertTrue( true );
    finishTest();
  }
View Full Code Here


  }

  public void testSolutionCompare2() {
    startTest();

    SolutionCompare compare = new SolutionCompare();
    String path1 = PentahoSystem.getApplicationContext().getSolutionPath( "test/charts/areachart_data.xaction" ); //$NON-NLS-1$
    String path2 = PentahoSystem.getApplicationContext().getSolutionPath( "test/dashboard" ); //$NON-NLS-1$
    compare.compare( path1, path2 );

    assertTrue( true );
    finishTest();
  }
View Full Code Here

TOP

Related Classes of org.pentaho.platform.engine.services.solution.SolutionCompare

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.