I'm a licensed user and am using Java API. I just figured out how to programmatically add a test record into a test run. But the record does not contain the step description or expected result defined in a TestCase even I had already specified the uri of the test case before added any step result into the record:
Code: Select all
testRecord.setTestCaseURI(testcase.getUri());
testRecord.setTestCaseRevision("");
Also I found if I use TestManagementService to get a manually completed test record, the return object does not contain those contents either. But they are shown on the browser....
Does anyone have a solution for this?