Forum member

AnNCrunchUser

2 posts

Posts by AnNCrunchUser

  1. Tests with TestCaseAttribute won't be marked as failing when number of arguments are wrong

    Hi Remco, okay, but i just found this issue cause Jenkins was able to report this test case as skipped. So the interesting question would be, what makes Jenkins different to detect those faulty tests. So I'm (and probably you too) are not able to answer this question now. But maybe some Jenkin…

  2. Tests with TestCaseAttribute won't be marked as failing when number of arguments are wrong

    If you take the following test: [code=csharp] [TestFixture] public class TestCaseSourceTests { [TestCase(@"Invalid number of arguments")] [TestCase(@"Valid argument", 42)] public void TestCaseSourceTests_ProvideWrongNumberOfArguments_LetTestFail(string some…