Skip to content

thetestautomator/TestPlanTools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TestPlanTools

Adds functionality to Azure DevOps Test Plan and helps with test automation.

Functions

Test case association

Let's you associate automated test cases with test cases in your test plan. Add an annotation to your test case - the id is the test case id in the test plan

[TestCaseId("123")]
public static void TestMethod()
{
    // ...
}

Then initialize the TestPlanTool, set your DevOps-account and call method 'AssociateTestCases'.

var testPlanTools = new TestPlanTool(new DevOpsConfiguration
{
    Url = "",
    Project = "",
    User = "",
    Token = "".ToSecureString()
});

testPlanTools.AssociateTestCases();