Ejemplo n.º 1
0
        public void UpdateTestPlan()
        {
            QaseAPI qaseAPI = new QaseAPI("https://api.qase.io/v1", "your api token");

            var id = qaseAPI.UpdateTestPlanAsync("TEST", 1, new TestPlanRequest
            {
                Title       = "Test testPlan",
                Description = "TestPlan description",
            }).Result
                     .Result.Id;
        }