Package edu.wpi.cs.wpisuitetng.modules.core.models

Examples of edu.wpi.cs.wpisuitetng.modules.core.models.Project


   * @throws WPISuiteException
   */
  public void testUpdate() throws WPISuiteException
  {
    String updateString = "{ \"idNum\": \"2\", \"name\": \"proj2\" }";
    Project newTemp = this.test.update(tempSession, updateTemp, updateString);
   
    // TODO: find a way to retrieve the User from storage to run assertions on.
   
    assertTrue(newTemp.getIdNum().equals("2"));
    assertTrue(newTemp.getName().equals("proj2"));
  }
View Full Code Here

TOP

Related Classes of edu.wpi.cs.wpisuitetng.modules.core.models.Project

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.