Tagged Questions

Starting with 2.5.x, TestCaseAttributes can be used to create parametrized tests in NUnit.

learn more… | top users | synonyms

3
votes
1answer
188 views

Is there a JUnit equivalent to NUnit's testcase attribute?

I've googled for JUnit test case, and it comes up with something that looks a lot more complicated to implement - where you have to create a new class that extends test case which you then call: ...
3
votes
1answer
399 views

NUnit and TestCaseAttribute, cross-join of parameters possible?

I have a unit-test that tests a variety of cases, like this: public void Test1(Int32 a, Int32 b, Int32 c) Let's say I want to create test-code without a loop, so I want to use TestCase to specify ...
1
vote
2answers
742 views

NUnit TestCaseSource pass value to factory

I'm using the NUnit 2.5.3 TestCaseSource attribute and creating a factory to generate my tests. Something like this: [Test, TestCaseSource(typeof(TestCaseFactories), "VariableString")] public void ...