allure-csharp
allure-csharp copied to clipboard
Xml doc to description conversion
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