Meyn.TestLink.TestLink.GetTestCasesForTestPlan C# (CSharp) Method

GetTestCasesForTestPlan() public method

get all test cases for a test plan .
The same test case id can show up multiple times, once per platform.
public GetTestCasesForTestPlan ( int testplanid, int testcaseid, int buildid, int keywordid, bool executed, int assignedTo ) : List
testplanid int
testcaseid int
buildid int
keywordid int
executed bool
assignedTo int
return List
        public List<TestCaseFromTestPlan> GetTestCasesForTestPlan(int testplanid, int testcaseid, int buildid, int keywordid, bool executed, int assignedTo)
        {
            stateIsValid();
            object response = proxy.getTestCasesForTestPlan(devkey, testplanid, testcaseid, buildid, keywordid, executed, assignedTo);
            List<TestCaseFromTestPlan> result = new List<TestCaseFromTestPlan>();
            if ((response is string) && ((string)response == string.Empty))
                // equals null return
                return result;
            handleErrorMessage(response);
            XmlRpcStruct list = response as XmlRpcStruct;
            return TestCaseFromTestPlan.GenerateFromResponse(list);
        }
        /// <summary>

Same methods

TestLink::GetTestCasesForTestPlan ( int testplanid ) : List
TestLink::GetTestCasesForTestPlan ( int testplanid, int testcaseid ) : List
TestLink::GetTestCasesForTestPlan ( int testplanid, int testcaseid, int buildid ) : List
TestLink::GetTestCasesForTestPlan ( int testplanid, int testcaseid, int buildid, int keywordid ) : List
TestLink::GetTestCasesForTestPlan ( int testplanid, int testcaseid, int buildid, int keywordid, bool executed ) : List
TestLink::GetTestCasesForTestPlan ( int testplanid, int testcaseid, int buildid, int keywordid, bool executed, int assignedTo, string executedstatus ) : List