allure-csharp icon indicating copy to clipboard operation
allure-csharp copied to clipboard

Xml doc to description conversion

Open delatrie opened this issue 2 years ago • 0 comments

The following usage:

class MyTestClass
{
   /// <summary>
   /// The description of the test method.
   /// <summary>
    [Test]
    public void MyTest()
    {
        /* ... */
    }
}

should be equivalent to

class MyTestClass
{
    [Test]
    [AllureDescription("The description of the test method.")]
    public void MyTest()
    {
        /* ... */
    }
}

Considerations

  • [ ] Explore the possibility of getting a test method's xml documentation
  • [ ] Implement doc-to-string conversion

delatrie avatar Oct 30 '23 13:10 delatrie