I'm using NUnit. I have my test method defined likeso:
[Test]
[TestCase("Fred", "Bloggs")]
[TestCase("Joe", "Smith")]
public void MyUnitTest(string firstName, string lastName)
{
...
}
After a TestCase has finished, it goes into the TearDown Method. What'd like to do, is have those TestCase parameters that are passed into the test method but also passed into the TearDown method.
Something like this:
[TearDown]
public void TearDown(string firstName, string lastName)
{
...
}
I'm hoping that NUnit supports this out-of-the-box. Otherwise, I need to write bespoke code in the test method to store the test data in a collection. Then that collection is used in the TearDown method.
If anyone has any thoughts .. would be great! Thanks. Christian
Arguments
is available since v3.7, – Irisirisa