Forum member

rucamzu

2 posts

Posts by rucamzu

  1. Parameterized NUnit tests run only once

    Thanks for the help, I've been probably missing NCrunch warning. The link to the documentation is broken, but I'll try to get SetName working. Thanks!

  2. Parameterized NUnit tests run only once

    Hi, I'm using NCrunch 3.6.0.2 on a C# library project with NUnit 3.6.1, targeting .NET 4.5 on Visual Studio 2015. I'm writing parameterized tests like this: [code=csharp] [Test, TestCaseSource(nameof(SomeIntegers))] public void MyTest(List<int> someIntegers) { ... } private static …