Package uk.ac.osswatch.simal.model

Examples of uk.ac.osswatch.simal.model.IOrganisation.addName()


   
    @Test
    public void testAddName() throws SimalRepositoryException {
      IOrganisation org = SimalRepositoryFactory.getOrganisationService().get("http://www.test.com/Organization");
      String name = "Test Name";
      org.addName(name);
      assertEquals("Name is not as expected after adding new name", name, org.getDefaultName());
    }
 
    @Test
    public void testAddCurrentProject() throws SimalRepositoryException {
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.