public void addTestCaseExecutionDetails() throws Exception { activityObj.setActivityId("001"); testCaseObj.setActivityObj(activityObj); testCaseObj.setTestCaseId("001"); userObj.setUserId("12"); testCaseObj.setUserObj(userObj); testCaseObj.setActualDate(new Date(1970, 01, 01)); testCaseObj.setTestCaseStatus("complete"); testCaseObj.setComments("better"); testCaseObj.setActualBehaviour("got value"); System.out.println(tmsManager.addTestCaseExecutionDetails(testCaseObj)); }
public void updateTestCaseExecutionDetails() throws Exception { testCaseObj.setTestCaseStatus("Complete"); testCaseObj.setTestCaseId("001"); System.out.println(tmsManager.updateTestCaseExecutionDetails(testCaseObj)); }