Package org.jamesii.perfdb.jdbc

Examples of org.jamesii.perfdb.jdbc.PerformanceType


    assertEquals(expected.getDescription(), actual.getDescription());
  }

  @Override
  public PerformanceType getEntity() throws Exception {
    return new PerformanceType("Performance measure",
        "Description of performance measure",
        TotalRuntimePerfMeasurerFactory.class);
  }
View Full Code Here


  @Deprecated
  // Performances need Application implementation
  public Performance getEntity() throws Exception {
    RuntimeConfiguration rtConfig = (new RTConfigTest()).getConnectedEntity();
    rtConfig.create();
    PerformanceType pm = (new PerfMeasureTest()).getConnectedEntity();
    pm.create();
    return new Performance(null, pm, 0.5);
  }
View Full Code Here

TOP

Related Classes of org.jamesii.perfdb.jdbc.PerformanceType

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.