Microsoft Test (MSTest) unit testing framework
123
votes
8answers
24k views
NUnit vs. MbUnit vs. MSTest vs. xUnit.net
There are quite a lot of unittesting frameworks out there for .NET. I found this little feature comparison: http://xunit.codeplex.com/wikipage?title=Comparisons
Now I am to choose the best one for ...
47
votes
9answers
10k views
MSTest run fails because source assembly is not trusted
I just added xUnit to our test project (for the Asserts, we're still using MSTest as the framework) and immediately the test runs refused to execute any of the tests. This is the error message:
...
43
votes
6answers
11k views
How can I get “Copy to Output Directory” to work with Unit Tests?
When I build a unit test project before the tests are executed the test output is copied to a TestResults folder and then the tests are executed. The issue I'm having is that not all the files in the ...
42
votes
5answers
16k views
Why does Visual Studio create a new .vsmdi file?
If I open a solution in Visual Studio 2008 and run a unit test then VS creates a new .vsmdi file in the Solution Items folder and gives it the next number available e.g. My Solution2.vsmdi.
Any idea ...
31
votes
10answers
6k views
VS 2010 Test Runner error “The agent process was stopped while the test was running.”
In Visual Studio 2010, I have a number of unit tests. When I run multiple tests at one time using test lists, I sometimes reveive the following error for one or more of the tests:
The agent ...
30
votes
3answers
3k views
MSTest copy file to test run folder
I've got a test which requires an XML file to be read in and then parsed. How can I have this file copied into the test run folder each time?
The XML file is set to "Copy if newer" and a compile mode ...
24
votes
7answers
8k views
NUnit vs Visual Studio 2010's MSTest?
I realise that there are many older questions addressing the general question of NUnit v MSTest for versions of Visual Studio up to 2008 (such as this one).
Microsoft have a history of getting things ...
21
votes
3answers
2k views
Visual Studio 2010 does not discover new unit tests
I am writing some unit tests in Visual Studio 2010. I can run all tests by using "Run all Tests in Current Context".
However, if I write a new unit test, it does not get picked up by the environment ...
21
votes
9answers
2k views
Is there anything I can do in NUnit that I can't do in MSTest?
This question has been asked in various forms in a number of different forums, but, IMHO, I haven't been able to find a place where it's really answered clearly, so I'm going to reframe it and ask it ...
21
votes
8answers
8k views
Problems with DeploymentItem attribute
I'm currently maintaining an "old" system written in C#.net, removing some obsolete features and doing some refactoring. Thanks god, the previous guy wrote some unit tests (MSTests). I quite ...
21
votes
5answers
12k views
Getting PartCover to work
I want to try PartCover for code coverage. I'm running Visual Studio 2008 Professional with MSTest. The Professional Edition does not include the Team Testing tools, like Code Coverage.
So, I'm ...
17
votes
10answers
4k views
How to Ease TDD with MSTest / VS2008
I've read time and time again that TDD/test first is more difficult with MSTest than it is with other testing frameworks such as nUnit, MBUnit, etc... What are some suggested manual workarounds and/or ...
15
votes
2answers
2k views
MSTest - Is it possible to execute code once before all tests run?
Basically I would like to tell MSTest to execute a bit of code before launching into a series of test runs, essentially what I would like to do is the same thing as sticking some code in Main().
The ...
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 ...
13
votes
6answers
8k views
How do I use MSTest without Visual Studio?
Does MSTest have standalone GUI similar to nUnit that lets me use it and run test without visual studio? What is the official site for MSTest where I can learn more about how to use it?
12
votes
10answers
10k views
MSTest: No tests are run because no tests are loaded or the selected tests are disabled
I searched SO with
no tests are run MSTest
but could not find relevant answer.
Scenario:
I have a c# solution with the following structure:
mySolution
myProject
myProject.MSTests
...
12
votes
5answers
7k views
Integrating Hudson with MS Test?
Is it possible to integrate Hudson with MS Test?
I am setting up a smaller CI server on my development machine with Hudson right now, just so that I can have some statistics (ie. FxCop and compiler ...
11
votes
2answers
2k views
Do MSTest deployment items only work when present in the project test settings file?
I can't seem to grasp how MSTest deployment items are supposed to be configured. I have been able to get them working properly by modifying the project's test settings file, but this is less then ...
11
votes
3answers
802 views
Are multiple asserts bad in a unit test? Even if chaining?
Is there anything wrong with checking so many things in this unit test?:
ActualModel = ActualResult.AssertViewRendered() // check 1
.ForView("Index") // ...
10
votes
3answers
1k views
Forcing MSTest to use a single thread
Given this test fixture:
[TestClass]
public class MSTestThreads
{
[TestMethod]
public void Test1()
{
Trace.WriteLine(Thread.CurrentThread.ManagedThreadId);
}
[TestMethod]
...
10
votes
4answers
645 views
Recommendations for Continuous integration for Mercurial/Kiln + MSBuild + MSTest
We have our source code stored in Kiln/Mercurial repositories; we use MSBuild to build our product and we have Unit Tests that utilize MSTest (Visual Studio Unit Tests).
What solutions exist to ...
10
votes
5answers
7k views
Running NUnit tests in Visual Studio 2010 with code coverage
We have recently upgraded from Visual Studio 2008 to Visual Studio 2010. As part of our code base, we have a very large set of NUnit tests. We would like to be able to run these unit tests within ...
10
votes
5answers
2k views
Unit Testing: DateTime.Now
I have some unit tests that expects the 'current time' to be different than DateTime.Now and I don't want to change the computer's time, obviously. What's the best strategy to achieve this?
Thanks
10
votes
6answers
588 views
Object Comparison in Unit Testing
I have two objects in my unit test, the actual and expected object. All properties on the object method are the exact same and if I run the following test:
Assert.AreEqual( expectedObject.Property1, ...
10
votes
1answer
2k views
Global test initialize method for MSTest
Quick question, how do I create a method that is run only once before all tests in the solution are run.
10
votes
3answers
2k views
Unit testing a LINQ2SQL repository
I am taking my first steps with MsTest and Moq and would like to unit test a Linq2SQL repository class. The problem is that I do not want the unit tests to permantly modify my development database.
...
10
votes
3answers
9k views
Running unit tests on Team Foundation Server (TFS) builds
What are the steps to get Team Foundation Server running unit tests when a given build runs?
What are the caveats / pitfalls / workarounds a dev or sysadmin should be aware of when setting up a TFS ...
9
votes
7answers
3k views
Does VS2010 Code Coverage support nUnit?
According to this schema VS2010 Premium and Ultimate has a tool for checking Code Coverage - together with a few other testing tools. Does this support nUnit too, or just MS test?
9
votes
3answers
1k views
MSTEST CollectionAssert use with generics?
It appears that CollectionAssert cannot be used with generics. This is super frustrating; the code I want to test does use generics. What am I to do? Write boilerplate to convert between the two? ...
9
votes
3answers
962 views
Is there a fluent assertion API for MSTest?
I've recently been exposed to the fluent interface in nUnit and I love it; however, I am using msTest.
Does anyone know if there is a fluent interface that is either testing framework agnostic or ...
9
votes
3answers
653 views
How do you create a custom attribute for MS Test?
If you want to create a custom attribute for MS test (say [Repeat(3)]
how would you do that?
8
votes
1answer
388 views
Develop and run MSTest unit tests in Visual Studio 2010 without including .vsmdi and .testsettings
I know this is somehow possible, as we have a project that contains MSTest unit tests that are runnable via the VS2010 test runner. We can even add new test methods or classes to the existing ...
8
votes
8answers
3k views
Where is mstest.exe located?
I need to run mstest from the command line - where in the world is this exe located? Can anyone give me a clue?
Edit: I only have Visual Studio 2010 installed
8
votes
1answer
1k views
MSTest Equivalent for NUnit's Parameterized Tests?
NUnit supports a feature where you can specify a set of data inputs for a unit test to be run multiple times.
[RowTest]
[Row(1001,1,2,3)]
[Row(1,1001,2,3)]
[Row(1,2,1001,3)]
public void SumTests(int ...
8
votes
4answers
3k views
Running VSTS tests without mstest.exe
From reasons I won't get into, all our unit tests are using the VSTS test framework. I now want to create an MSBuild script that runs the tests, but I don't want to use mstest.exe from various reasons ...
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]
...
8
votes
2answers
3k views
How to use MsTest in Continous Integration without VS?
I my problem is quite simple, i have a CI server wich run msbuild and mstest.
The problem is that the Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll doesn't exist( and i thinks other file ...
8
votes
3answers
6k views
How does Assert.AreEqual determine equality between two generic IEnumerables?
I have a unit test that will test to see if a method that returns the correct IEnumerable. The method builds the IEnumerable using yield return. The class that it is an IEnumerable of is below:
...
8
votes
7answers
6k views
MSTest.exe not finding app.config
I'm currently trying to run MSTest.exe from NCover, but I believe the question could apply generally to running MSTest.exe from the command line.
If I have the "/noisolation" argument, then ...
8
votes
5answers
1k views
How can I Fail a WebTest?
I'm using Microsoft WebTest and want to be able to do something similar to NUnit's Assert.Fail(). The best i have come up with is to throw new webTestException() but this shows in the test results as ...
7
votes
2answers
208 views
How to fix: MsTest-Subproject executes [DeploymentItem] only in Projectscope but not in Solutionscope
I have a vs2010-solution with 7 MsTest-Subprojects/Assemblies
One of the MsTest-Subprojects/Assemblies need a file "ReportEngine.config" and a directory "Report Files" to run
[TestClass]
...
7
votes
3answers
350 views
What can prevents MSTest from running in parallel?
What can prevents MSTest from running in parallel? I set the parallelTestCount to 0, but it is still running one test at a time.
7
votes
1answer
145 views
What is the difference between these two Unit Test Assertions?
Came across the following MS Unit Test:
[TestMethod]
public void PersonRepository_AddressCountForSinglePerson_IsNotEqualToZero()
{
// Arrange.
Person person;
// Act.
person = ...
7
votes
2answers
224 views
How to prevent expected exceptions from breaking the debug test run?
When running MSTEST unit tests in debug mode, the execution stops in every expected exception that is thrown. My test looks like this
[TestMethod()]
[ExpectedException(typeof(ArgumentNullException))]
...
7
votes
5answers
238 views
how often should the entire suite of a system's unit tests be run?
Generally, I'm still very much a unit testing neophyte.
BTW, you may also see this question on other forums like xUnit.net, et cetera,
because it's an important question to me. I apoligize in ...
7
votes
2answers
1k views
Using inheritance in MSTest
I am setting up some MSTest based unit tests. To make my life easier I want to use a base class that handles the generic setup and taredown all of my tests require. My base class looks like this:
...
7
votes
5answers
3k views
Unit testing ASP.NET MVC 2 routes with areas bails out on AreaRegistration.RegisterAllAreas()
I'm unit testing my routes in ASP.NET MVC 2. I'm using MSTest and I'm using areas as well.
[TestClass]
public class RouteRegistrarTests
{
[ClassInitialize]
public static void ...
7
votes
4answers
4k views
How to integrate NUnit tests into a TFS 2010 build
What is the best way to integrate nunit tests into TFS 2010? Is it via generic tests or is there a better approach to running them?
Ideally I'd like to have the granularity of one generic test per ...
7
votes
8answers
392 views
Is summary necessary in unit test method
Since the naming of a unit test method makes its purpose more meaningful, is it necessary to add a summary to a unit test method?
Example:
/// <summary>
/// Check the FormatException should be ...
7
votes
7answers
3k views
How do I tell MSTEST to run all test projects in a Solution?
I need to know how to tell MSTEST to run all test projects in a solution file. This needs to be done from the command line. Right now I have to pass it a specific project file, I'm trying to get it ...