Package info.jtrac.mylyn.domain

Examples of info.jtrac.mylyn.domain.Item


    assertNotNull(v.getNumber());
    assertNotNull(v.getTimestamp());
  }
 
  public void testPutItem() throws Exception {
    Item item = new Item();
    item.setSummary("Test Summary");
    item.setDetail("Test Detail");
    item.setLoggedBy("Some Body");
    item.setAssignedTo("Any Body");
    String refId = client.putItem(item);
    assertNotNull(refId);
  }
View Full Code Here

TOP

Related Classes of info.jtrac.mylyn.domain.Item

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.