Tagged Questions

8
votes
1answer
1k views

Does MSTest Have an Equivalent to NUnits TestCase

I find the TestCase feature in NUnit quite useful as a quick way to specify test parameters without needing a seperate method for each test. Is there anything similar in MSTest? [TestFixture] ...
5
votes
4answers
1k views

NUnit TestCase with Generics

Is there any way to pass generic types using a TestCase to a test in NUnit? This is what I would like to do but the syntax is not correct... [Test] [TestCase<IMyInterface, MyConcreteClass>] ...
3
votes
1answer
189 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
2answers
137 views

How do I simplify these NUNit tests?

These three tests are identical, except that they use a different static function to create a StartInfo instance. I have this pattern coming up all trough my testcode, and would love to be be able to ...
2
votes
2answers
38 views

How to use TestCase in NUnit 2.5?

I have a Currency class which I persist to my database using NHibernate. Currency class looks like this: public class Currency : Entity { public virtual string Code { get; set; } public ...
2
votes
2answers
139 views

NUnit use of TestCase clarity needed

I have a test like this: [TestCase(12, Result= typeof(mytype))] public mytype GetById(int id) { yada, yada, yada. } in the NUnit error window, I see this: Test.Tester.GetById(12): Expected: ...
0
votes
1answer
57 views

How to escape double quotes in as a parameter to an NUnit TestCase?

I tried writing the following TestCase for an NUnit test written in VB.net: <TestCase("FirstNode", "<node id=\"FirstNode\">")> Public Sub GetNode_GivenSomeNodeId_ReturnCorrectNode(ByVal ...