Package org.pentaho.platform.plugin.action.chartbeans

Examples of org.pentaho.platform.plugin.action.chartbeans.ChartBeansSystemListener


   * startup(org.pentaho.platform.api.engine.IPentahoSession)}
   * .
   */
  @Test
  public void testStartup() {
    IPentahoSystemListener sl = new ChartBeansSystemListener();
    Assert.assertTrue( sl.startup( null ) );
  }
View Full Code Here


  /**
   * Test method for startup from file with no chart engines defined.
   */
  @Test
  public void testBadStartupFile() {
    ChartBeansSystemListener sl = new ChartBeansSystemListener();
    sl.setConfigFile( "chartbeans/chartbeans_config_no_engines.xml" );
    Assert.assertFalse( sl.startup( null ) );
  }
View Full Code Here

TOP

Related Classes of org.pentaho.platform.plugin.action.chartbeans.ChartBeansSystemListener

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.