* @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"));
}