use of teammates.ui.controller.ShowPageResult in project teammates by TEAMMATES.
the class ActionResultTest method testAppendParameters.
@Test
public void testAppendParameters() {
ActionResult svr = new ShowPageResult("/page/instructorHome", null, null, null);
assertEquals("/page/instructorHome", svr.getDestinationWithParams());
svr.addResponseParam(Const.ParamsNames.USER_ID, "david");
assertEquals("/page/instructorHome?user=david", svr.getDestinationWithParams());
}
Aggregations