コード例 #1
0
        public void GetTestCaseAssignedTester()
        {
            var testPlan  = testlink.getTestPlanByName("CMGE", "integration-test-plan");
            var testcases = testlink.GetTestCasesForTestPlan(testPlan.id);
            var builds    = testlink.GetBuildsForTestPlan(testPlan.id);
            var platforms = testlink.GetTestPlanPlatforms(testPlan.id);

            foreach (var tc in testcases)
            {
                foreach (var p in platforms)
                {
                    foreach (var b in builds)
                    {
                        var tester = testlink.GetTestCaseAssignedTester(testPlan.id, tc.tc_id, p.id, b.id);
                        _testOutputHelper.WriteLine(tester);
                    }
                }
            }
        }