Microsoft .NET Unit Testing Framework (MSTest)

learn more… | top users | synonyms

0
votes
0answers
3 views

Sending results of MStest (from XML) to my manager

I am using Selenum Webdriver using .Net bindings, Selenium Grid, MStest framework, testing our web application. The title says it all: My manager does not want to have to scan an XML file, which is ...
0
votes
0answers
21 views

Executing coded UI test from a target machine's mstest(standalone). Dll's/Files needed!! :(

i set up mstest on target machine as standalone program without installing visual studio. So i copied the files(*.exe's,dll's) mstest needed to the target machine and register all dlls in gac which ...
0
votes
0answers
11 views

What does Total lines constitute in ReportGenerator?

I'm using the opensource tool ReportGenerator to show the details of the XML output generated from using OpenCover and mstest. For one particular project I see the following metrics: Covered Lines: ...
0
votes
1answer
23 views

Why Opencover with MSTest does not execute and says “access is denied”?

I am using open cover with MSTest. I am a new users and trying to get hang of Opencover. I have tried with MSTest and MSTest is working fine with my new project in Vs2010. When I am executing ...
0
votes
0answers
30 views

MSTest Doesn't Pull Down Different Versions of Newtonsoft.JSON.dll

We use MSTest to run automated tests against our solution. Some of the projects in the solution are targeted for .NET 3.5 and are referencing Newtonsoft.JSON.dll version 4.0.8. Other projects are ...
0
votes
1answer
24 views

CodedUITests: Can i cancel a testrun when some requierements in ClassInitialize couldnt reached?

is there a way to cancel a testrun in ClassInitialize()? For example, i start the application i wanted to do some test with in my ClassInitialize() method. If the application couldnt be started i ...
0
votes
0answers
17 views

How to generate database LocalDB with NHibernate

'm having trouble creating a test that generates the database I read several articles about using Instance pipe name. But I do not know how to use! Project It follows the structure of my app ...
1
vote
1answer
29 views

Expression to include by file name but exclude by same folder name

I'm trying to figure out how to configure VS Code Coverage Run Settings to include only target libraries but not test libraries and not 3rd party libraries: Syntax is the following: <Include> ...
-1
votes
2answers
68 views

C#: Is there a way to launch the debugger from a codeline? [closed]

Question: Is it possible to start a web project application in my current solution without debugger (keycombo: Ctrl+F5) through a codeline? thanks in advance
0
votes
2answers
47 views

How to make unit test run in bin folder

I'm trying to access a file in my solution structure during the unit test. My unit test project has the bin\Debug\ as the output directory. So I have written the code assuming that ...
0
votes
0answers
45 views

Visual Studio 2012 Unit Test Results 'Debug Trace' Column

When I run a unit test in Visual Studio 2010 the 'Test Results' window contains a column for 'Debug Trace'. I know I can get the same information in 2012 by first clicking on the test in 'Test ...
0
votes
1answer
40 views

How can tests reference external resources in a parent source directory in a TFS 2012 build?

I'm setting up a TFS 2012 build agent and have run into a small problem with unit tests that reference external files. (Yes, yes, this is bad...no arguments there! I still have to get a build running) ...
1
vote
1answer
28 views

Disable dependency checking for TestContext

I have created MSTest using Spring. In this test I use TestContext. [TestClass] public class Test : AbstractDependencyInjectionSpringContextTests { [TestMethod] public void Test() { ...
0
votes
1answer
28 views

How to enable RowTest in MSTest for VS2012 [duplicate]

guys, I found that there is no such RowTest in MSTest, So how can I enable this functionary? Thanks!
1
vote
0answers
32 views

Issue with Code Coverage in VS 2012

I have a simple ASP.Net MVC 4 application with 3 simple tests. Each of these tests run successfully to completion, however the Code Coverage window gives me the following error: Empty results ...
0
votes
0answers
53 views

Console.Write and Console.WriteLine are behaving similar for MS Test Output

As per the official documentation Console.Write should not be writing new line char to output where as Console.WriteLine should. But for some reason, I'm seeing a different behavior for Console.Write ...
1
vote
3answers
173 views

Visual Studio 2012 test categories hierarchy (Test Explorer)

I am testing a quite big project (C#, VS2012), and I need to arrange my unit test in test hierarchy (eg.: now I have 43 test cases). I do really need the hierarchy. I have test categories defined ...
0
votes
0answers
18 views

TFS MSTest result reporting history with test pass rate graph

Is there anything built into the testing framework that allows for a kind of "history" of test runs, so that as results are published to the server, a graph or some kind of data can be generated ...
0
votes
2answers
51 views

How to reach full CodeCoverage? Free Blocks through Exception

I've got a little Problem.(at unittesting) - I unittest a class where methods raises exceptions. The structure is: public bool DoA() { ThrowException(); return true; } ...
1
vote
1answer
17 views

How to test BundleConfig

I have a problem with my bundles. Files .min is not being generated as reported on this link. I have to create a test for it. How to do this? [TestInitialize] public void Setup() { ...
3
votes
2answers
56 views

How do I add a MsTest unit test support to a C# application

How do I add MsTest support to an existing C# application project in VS2012? I want to be able to add unit tests to the application project and have the IDE integration show the 'click to run' icons ...
0
votes
1answer
91 views

Coded UI Tests: HOW can i set the search properties for recording?

i wanted to inform myself about Coded UI Tests. So i created some coded ui tests and played a bit around. But now im at a point i cant help myself. I have the following problem. When i do record some ...
0
votes
1answer
47 views

TeamCity Setting up MSTest 2012

On the TeamCity server we have installed VS 2012. I have created a build configuration in TeamCity that builds and deploys the solution. I have added a MSTest 2012 Configuration as well, but don't ...
0
votes
0answers
27 views

C# MSTest Application.StartupPath used in assembly under test

I am writing unit tests using MSTest. The component under test has a dependency on another component that searches for support files relative to Application.StartupPath. When the test runs, the ...
2
votes
1answer
90 views

Unit testing a static class with a private static field that is a common dependency

I have a public static class I'm trying to unit test using Visual Studio 2012's built in testing framework. When I try to run unit tests on it I get this error: The type initializer for ...
1
vote
1answer
73 views

MSTest hangs for seemingly no reason

<TLDR> Running an MSTest test from the command line hangs without any errors or timeouts whilst "waiting for runs/agents". The reason might be that "there are no runs in the queue", but why this is ...
2
votes
1answer
76 views

Experiencing “DEP3000” error when trying to run WinRT unit tests

I am experience this strange error trying to run unit tests for WinRT from Visual Studio 2012. Error: DEP3000: Attempts to stop the application failed. This may cause the deployment to fail. ...
0
votes
2answers
30 views

Integrating Spring.NET with Specflow

Can I make use of Spring.NET's base classes (a la AbstractDependencyInjectionSpringContextTests) for loading an application context and performing dependency injection using MSTest? I'm trying to ...
0
votes
0answers
32 views

MSTest: How to change name of TestMethod in TestExplorer?

I am currently building a sample application where I use MS Test to implement a Scenario-based Given-When-Then-style UnitTest-project in VS2012. For this to work I have an abstract Scenario (base) ...
0
votes
1answer
35 views

mstest deployment - deploy to TestResults directory

I am using mstest and I need to copyfiles out of the directory of the "Out" directory and rename "Out" directory. The current structure is: TestResults/ Out/ Resources/ resource.txt ...
0
votes
1answer
40 views

TFS/MSTest Administrator privileges

I have tests, written in C#, that are run in an automated TFS build. One of the tests requires admin privileges (to access a certificate) so it fails every time in an automated build/test. If I run ...
2
votes
1answer
38 views

MSBuild and MSTest in non-TFS Build tool with MSBuild Outdir

I've been charged with coming up with a workflow in a non-TFS build tool that will build a solution, run unit test projects in the solution, then package the final output of the build for deployment. ...
1
vote
0answers
31 views

How to use custom logger for vs test?

I'm trying to use this custom Teamcity logger for VsTest per https://github.com/JakeGinnivan/VSTest.TeamCityLogger and http://msdn.microsoft.com/en-us/library/vstudio/jj155796.aspx After copying the ...
0
votes
1answer
82 views

Unit test fails saying could not find 'Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight' assembly

Unit test(MS test framework) runs successfully in the system in which it is written but fails in other systems and throwing the below error:: "Unit Test Adapter threw exception: Could not load ...
3
votes
1answer
368 views

Chromedriver is extremely slow on a specific machine using Selenium Grid and .net

Overview: Chromedriver works normally on one machine but extremely slowly on two other identical machines. Setup: Selenium Webdriver using .Net for coding and Selenium Grid for distributing the ...
1
vote
0answers
47 views

How to shim HttpWebRequest

I have a problem trying to shim HttpWebRequest. If you just add a fakes assembly of the System assembly it doesn't work instantly. However if you change the fakes file and add the specific namespace ...
0
votes
0answers
14 views

Analyze Code Coverage throws error after tests are run

I get the following when I try and Analyze Code Coverage using MSTest in 2012. It happens on a new project and new tests as well. Exception was thrown: Code Coverage Analysis engine threw ...
0
votes
1answer
51 views

DotCover shows only unit test source code not production code

I'm starting to use dotCover. I have a set of Debug compiled dlls + their pdbs. Then I've created a test project and executed resharper on it to see the coverage. What I'm getting is the coverage only ...
0
votes
1answer
47 views

Testing Custom Bootstrappers in Nancy

So I have a CustomBootstrapper, which does a lot of application initialization, including IoC registration and Quartz scheduler setup. The modules also heavily rely on the SuperSimpleViewEngine. Now ...
2
votes
1answer
97 views

How to use Visual Studio unit test to compare two XML files

I need to write a unit test to confirm that when I modify an XML file I get a specific result. I could simply compare the input and output as strings, but I don't want to get failures if little things ...
1
vote
1answer
39 views

MSTest in VS2010 - How to launch all loadtests in a single step

In the new team I work for we use a lot of unit tests, we use MSTest in VS2010. I have prepared about 10 loadtest to use these unit tests in various ways. How do you launch all the loadtest ...
0
votes
1answer
51 views

AutoMapper getting maps mixed up when running large number of tests?

I currently have a solution with about 1000 unit/integration tests using MSTest runner. The problem Im experiencing with AutoMapper is that when I have VS run all tests in the solution, I'll randomly ...
0
votes
2answers
54 views

Run unit/integration tests with Lab Management

We have a complete Lab Management environment running Coded UI tests in nightly builds. What we are trying to achieve is to run our integration tests (regular TestMethod() with SQL connections) just ...
0
votes
0answers
37 views

How do I deploy different files for running Integration Tests on different architectures?

We have multiple test projects that access databases directly. Those tests basically validate our sql queries written in C# code. Unfortunately, they are not separated at the moment and are in the ...
0
votes
0answers
31 views

Having errors while running UITest with mstest in command line

I'm having some trouble trying to run UI Tests with MSTest in command line. The errors are the following : Error calling Initialization method for test class TestProject1.CodedUITest1: ...
2
votes
1answer
63 views

Is there any .runsettings documentation?

I'm looking for documentation for .runsettings files as used with vstest. Is there an xsd? I can't seem to find much except for a few example files in the msdn documentation.
0
votes
1answer
32 views

Whats the difference between [TestClass] and [TestClassAttribute] in MSTest?

im about to inform my self about unit testing in visual studio. I went on msdn, and it says that the [TestClassAttribute] Syntax define a TestClass. Well, fine. But when i create a simple unit Test ...
0
votes
0answers
56 views

MSTest ASP.NET MVC Testing Controller

I am trying to write unit tests for my ASP.NET MVC 4 project's controllers using VS 2010 and MSTest. I have code coverage enabled for the project. When I run the tests individually, they run just ...
0
votes
2answers
54 views

Testing computational complexity

Suppose I have some code and it is important for me that the computational complexity observe some (algebraic) upper bound. For instance, I might have an algorithm that when properly implemented ...
3
votes
2answers
117 views

MSTest hangs when executing web tests

I'm working on a test migration of a TFS server from 2010 to 2012. We've taken a proof-of-concept server and successfully upgraded it to TFS2012. Now we're trying to repurpose an older build ...

1 2 3 4 5 26