Examples of BasicPropertiesImpl


Examples of eu.planets_project.tb.impl.model.BasicPropertiesImpl

    props.setScope(sScope);
    assertEquals(sScope, props.getScope());
  }
 
  public void testPurpose(){
    BasicProperties props = new BasicPropertiesImpl();
    String sPurpose ="Find the best migration tool supporting PDF/A";
    props.setScope(sPurpose);
    assertEquals(sPurpose, props.getScope());
  }
View Full Code Here

Examples of eu.planets_project.tb.impl.model.BasicPropertiesImpl

    assertEquals(sPurpose, props.getScope());
  }
 
 
  public void testIndication(){
    BasicProperties props = new BasicPropertiesImpl();
    String sIndication = "A overall description";
    props.setIndication(sIndication);
    assertEquals(sIndication, props.getIndication());
  }
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.