Add rule to detect calls to TestContext.Write
methods and CodeFix to replace usages with Out.Write
#770
Milestone
TestContext.Write
methods and CodeFix to replace usages with Out.Write
#770
We want to remove the
Write
method onTestContext
which are just wrappers around theOut
property.To do this we need an analyzer rule with a code fix to detect usages and replace them with
TestContext.Out.Write
See nunit/nunit#4762
The text was updated successfully, but these errors were encountered: