Examples of addExperimentReference()


Examples of eu.planets_project.tb.api.model.BasicProperties.addExperimentReference()

  public void testExperimentReference(){
    BasicProperties props = new BasicPropertiesImpl();

    //Test1:
    long l1 = 123;
    props.addExperimentReference(l1);

    assertTrue(props.getExperimentReferences().contains(l1));
    assertEquals(1,props.getExperimentReferences().size());

    //Test2:
View Full Code Here

Examples of eu.planets_project.tb.api.model.BasicProperties.addExperimentReference()

    assertTrue(props.getExperimentReferences().contains(l1));
    assertEquals(1,props.getExperimentReferences().size());

    //Test2:
    long l2 = 234;
    props.addExperimentReference(l2);
    assertTrue(props.getExperimentReferences().contains(l1));
    assertTrue(props.getExperimentReferences().contains(l2));
    assertEquals(2,props.getExperimentReferences().size());

    //Test3: 1/4
View Full Code Here

Examples of eu.planets_project.tb.impl.model.BasicPropertiesImpl.addExperimentReference()

  public void testExperimentReference(){
    BasicProperties props = new BasicPropertiesImpl();

    //Test1:
    long l1 = 123;
    props.addExperimentReference(l1);

    assertTrue(props.getExperimentReferences().contains(l1));
    assertEquals(1,props.getExperimentReferences().size());

    //Test2:
View Full Code Here

Examples of eu.planets_project.tb.impl.model.BasicPropertiesImpl.addExperimentReference()

    assertTrue(props.getExperimentReferences().contains(l1));
    assertEquals(1,props.getExperimentReferences().size());

    //Test2:
    long l2 = 234;
    props.addExperimentReference(l2);
    assertTrue(props.getExperimentReferences().contains(l1));
    assertTrue(props.getExperimentReferences().contains(l2));
    assertEquals(2,props.getExperimentReferences().size());

    //Test3: 1/4
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.