Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

NUnit has a feature called Values, like below:

[Test]
public void MyTest(
    [Values(1,2,3)] int x,
    [Values("A","B")] string s)
{
    ...
}

This means that the test method will run 6 times:

MyTest(1, "A")
    MyTest(1, "B")
    MyTest(2, "A")
    MyTest(2, "B")
    MyTest(3, "A")
    MyTest(3, "B")

We're using MSTest now, is there any equivalent for this so that I can run the same test with multiple parameters?

[TestMethod]
public void Mytest()
{
..
}

Thanks,

share|improve this question

6 Answers

up vote 8 down vote accepted

It is unfortunately not supported in MSTest. Apparently there is an extensibility model and you can implement it yourself. Another option would be to use data-driven tests.

My personal opinion would be to just stick with NUnit though...

EDIT: As of Visual Studio 2012, update 1, MSTest has a similar feature. See @McAden's answer below.

share|improve this answer
We're using Selenium which generates NUnit code so we switched to use NUnit instead :) – The Light Jan 27 '12 at 11:53
2  
I've found that something similar is now possible in Visual Studio 2012 Update 1, just FYI for future consideration of anybody looking at this answer. – McAden Dec 4 '12 at 19:53
@McAden do you have a link with an explanation? – jeroenh Dec 4 '12 at 22:10
3  
I gave an answer below with an example and a link to my blog post. It mentions the attributes necessary and also the "DisplayName" property on the attribute that distinguishes the cases in the Test Explorer. It was also mentioned in the October announcment of the CTP (which now has the official release) blogs.msdn.com/b/visualstudioalm/archive/2012/10/26/… I've added the information to this SO question because I spent quite a bit of time looking for it. Hopefully this will save somebody some time. – McAden Dec 4 '12 at 22:52
@McAden great, thanks! – jeroenh Dec 5 '12 at 8:18

As of about a week ago in Visual Studio 2012 Update 1 something similar is now possible:

[DataTestMethod]
[DataRow(12,3,4)]
[DataRow(12,2,6)]
[DataRow(12,4,3)]
public void DivideTest(int n, int d, int q)
{
  Assert.AreEqual( q, n / d );
}

I've got a blog post on it [here][1].

EDIT: It appears this is only available within the unit testing project for WinRT/Metro. Bummer

EDIT 2: The following is the metadata found using "Go To Definition" within Visual Studio:

#region Assembly Microsoft.VisualStudio.TestPlatform.UnitTestFramework.dll, v11.0.0.0
// C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0\ExtensionSDKs\MSTestFramework\11.0\References\CommonConfiguration\neutral\Microsoft.VisualStudio.TestPlatform.UnitTestFramework.dll
#endregion

using System;

namespace Microsoft.VisualStudio.TestPlatform.UnitTestFramework
{
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
    public class DataTestMethodAttribute : TestMethodAttribute
    {
        public DataTestMethodAttribute();

        public override TestResult[] Execute(ITestMethod testMethod);
    }
}
share|improve this answer
Windows Phone is now supported also, with Visual Studio 2012 Update 2 (currently, CTP 4) – Pedro Lamas Mar 14 at 11:10
2  
I have update 1 but DataTestMethod and DataRow are not recognised, which library are these attributes in? – Tyler Mar 27 at 12:15
What type of project are you testing? – McAden Apr 6 at 5:33
1  
Is there any official source about DataTestMethod? What namespace is it in, which assembly? – Igor Lankin Apr 6 at 21:15
See edit 2 for more info. – McAden Apr 13 at 6:47

Since nobody mentioned - not exactly the same as NUnit's Value (or TestCase) attributes, but MSTest has DataSource attribute, which allows you to do similar thing. You can hook it up to database or XML file - not as straightforward as NUnit's feature, but does the job.

share|improve this answer

MsTest does not support that feature buy you can implement you own attribute to achieve that. have a look at the below:

http://blog.drorhelper.com/2011/09/enabling-parameterized-tests-in-mstest.html

share|improve this answer

You can implement data driven test like HERE. I don't know if there is such a comfortable way as in NUnit..

share|improve this answer

MSTest has a powerful attribute called DataSource, using this you can perform data driven test as you asked. You can have your test data in XML, CSV or in a database. Here are few links that will guide you

http://visualstudiomagazine.com/articles/2009/09/15/unit-testing-with-vsts2008-part-3.aspx http://msdn.microsoft.com/en-us/library/ms182527.aspx
http://msdn.microsoft.com/en-us/library/ms243192.aspx

Hope this will help you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.