Package eu.planets_project.tb.api.model

Examples of eu.planets_project.tb.api.model.ExperimentEvaluation


 
  public void testEvaluationValue(){
    BenchmarkGoal nop1 = handler.getBenchmarkGoal(this.sGoalID);
   
    assertEquals("",nop1.getEvaluationValue());
    ExperimentEvaluation eval = new ExperimentEvaluationImpl();
    List<String> list = eval.getAllAcceptedEvaluationValues();
   
    assertEquals(4,list.size());
   
  //Test1:
View Full Code Here


      return dth.getAllTags();
    }
   
    public Map<String,String> getAvailableEvaluationValues() {
         TreeMap<String,String> map = new TreeMap<String,String>();
      ExperimentEvaluation ev = new ExperimentEvaluationImpl();
      Iterator<String> iter = ev.getAllAcceptedEvaluationValues().iterator();
      while (iter.hasNext()) {
        String v = iter.next();
        map.put(v, v);
      }        
      return map;
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.api.model.ExperimentEvaluation

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.