Tagged Questions
The rowtest tag has no wiki summary.
14
votes
2answers
1k views
How to RowTest with MSTest?
I know that MSTest doens't support RowTest and similar tests.
What MSTests users do? How is it possible to live without RowTest support?
I've seen DataDriven test features but sounds like too much ...
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]
...
6
votes
2answers
451 views
What happended to nunit extensions/rowtest?
In NUnit 2.4.7, nunit.framework.extensions.dll was included which made it possible to do RowTests.
When downloading the newest version (2.5.8) I can't find it. What happened to it?
3
votes
0answers
123 views
Data Driven Testing with cppunit
I'd like to make some data-driven tests using cppunit.
I thought I saw a while ago that a version of RowTest was ported to cppunit, but now I can't seem to find it anywhere.
What are some ways to do ...
2
votes
1answer
379 views
Does Resharper support RowTest?
Resharper doesn't recognise Rowtests, is this normal? Is there anyway to fix it? (other than splitting rowtest manually)
1
vote
2answers
250 views
RowTest in Visual Studio tests?
Is there something similar to mbUnit's RowTest in Visual studio tests. I wanted to have the ability to perform the same test using different input data and expected results.
Wanted to avoid using ...
1
vote
2answers
84 views
How Can I Debug a Specific Rowtest?
How can I debug a specific rowtest?
I'm using Visual Studio and nUnit. TDD.NET addon is great but it doesn't let me to debug a specific rowtest, before coming to my test I have to go through all ...
0
votes
1answer
103 views
Is there a way to RowTest using MSpec?
Whilst practising the Check Out Kata with MSpec I wanted to remove the duplication in my specs the same way that you would add a RowTest in NUnit, but I couldn't figure out how.
Has anyone tried ...
0
votes
1answer
87 views
Method parameters have incorrect values when using RowTest in VB.Net
I have the following test method (VB.NET)
<RowTest()> _
<Row(1, 2, 3)> _
Public Sub AddMultipleNumbers(ByVal number1 As Integer, ByVal number2 As Integer, ByVal result As Integer)
...