I have a test with the following setup:
[Test]
[Parallelizable]
[Row("BE"]
[Row("NL"]
public void test(string locale)
{
try
{
do something
}
finally
{
here I want to do something if the test fails
}
}
I've tried it with triggerEvent.TestFailed and several other options, but it always return passed, even if a rowTest fails..
Any help would be appriciated