public Integer createTestCase(
String authorLoginName,
String projectName,
String suiteName,
String testCaseName,
String summary,
String steps,
String expectedResults,
String importance) throws TestLinkAPIException
{
Integer projectID = TestLinkAPIHelper.getProjectID(this, projectName);
Integer suiteID = TestLinkAPIHelper.getSuiteID(this, projectName, suiteName);
return createTestCase(authorLoginName, projectID, suiteID, testCaseName, summary,
steps, expectedResults, null, null, null, null, null, importance);
}
Creating Test Case with Steps
Moderators: Amaradana, TurboPT, TL Developers
Creating Test Case with Steps
I'm not able to create a simple test case with Steps using java api. The step parameter only accepts string value which means I can only pass in maybe a single step. However, I need to pass in multiple steps (like a hashmap or arrayList). Kindly assist!!
Re: Creating Test Case with Steps
Try to contact people that have produced the java client.
Testlink server api is ok.
Testlink server api is ok.