0
votes
1answer
21 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 ...
-1
votes
2answers
67 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
44 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
20 views

Other than modifying the method name, how do you control the run sequence of methods within a unit test in Visual Studio 2012?

I would like to ensure test methods within unit test are run in a particular sequence. There's not a dependency on a previous method. The tests are isolated. The sequence is obviously alphabetic based ...
0
votes
2answers
54 views

How can I add a unit test to a C++ console program in Visual Studio 2012?

How can I add a unit test to a C++ console program in Visual Studio 2012? From what I've been able to gather from the MSDN the MS unit test support for C++ can't do this at all, (which doesn't ...
0
votes
0answers
18 views

How do I connect to a currently running test run?

How do I connect to a currently running test suite so I can view pass/fail and exception information in the Test Results window? I only have the option to connect to previously completed test runs, ...
0
votes
1answer
52 views

VS2012 assert helper function - test runner should not track in my function

During testing I have several Assert helper functions specific to the project. For example, I have to often check whether two IEnumerables are equivalent (exactly same content by reference, not ...
1
vote
3answers
165 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 ...
-1
votes
0answers
33 views

Microsoft CHESS and Visual Studio 2012

How to use Visual Studio 2012 and CHESS framework? Particularly, I am interested in using HostTypeAttribute and run tests from VS, not from CHESS test runner.
1
vote
1answer
28 views

.net reference dependency when doing unit testing

a [TestClass] was written in C#. the namespace Microsoft.VisualStudio.TestTools.UnitTesting was used and a reference added Microsoft.VisualStudio.QualityTools.UnitTestFramework. subsequent, clean ...
3
votes
2answers
54 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
85 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 ...
1
vote
1answer
43 views

why my test project doesn't appear on test explorer

I am using VS2012 (v110) I create a simple dll application with only 1 function and a test project to test the dll function. I set up both projects to be debug builds for win32 and tried Clean and ...
0
votes
3answers
59 views

Need to identify my .csproj file from VS2012 unit tests

I am writing a unit test to validate duplicate entries in my .csproj file. However, these unit tests ran before the build process starts in server, hence my relative path to .csproj couldn't identify ...
1
vote
0answers
67 views

Unit testing in VS2012 Update 2 with ReSharper 7.1.3 and TFS Express

After updating VS2012 to Update 2 and seeing my unit tests stuck in pending mode when running them with ReSharper, I downloaded version 7.1.3 as recommended and could once again run my tests. A few ...
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 ...
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. ...
1
vote
3answers
105 views

How to run xunit in Visual Studio 2012?

I am very new to unit testing. I have been following the procedures for creating a unit test in visual studio 2012 on http://channel9.msdn.com/Events/TechEd/Europe/2012/DEV214. The test just won't ...
0
votes
2answers
168 views

Visual Studio 2012 / Resharper Unit Tests don't run

I used to be able to run unit tests in VS 2012. Now, all of a sudden, whether I try to "Run" or "Debug" any unit tests, the Unit Test Sessions window puts the test into "Pending" status, but never ...
0
votes
0answers
10 views

RunAll button in Test Explorer doesn't work anymore

I have created a simple dll application and also a unittest to test its exported functions. But the button RunAll or Run doesn't my test project at all, only the status message at the bottom of my ...
0
votes
1answer
48 views

VS2012 : Error with unit test : Assert::AreEqual( object, object ) didn't work

I come to you for a strange problem when I use the Visual Studio Native Unit Test on VS 2012. I've a Coordinates class like that: #ifndef COORDINATES_HPP #define COORDINATES_HPP #include ...
0
votes
0answers
31 views

Is there an open-source VS2012 test adapter for gtest?

I'm looking for a Visual Studio 2012 test adapter to work with Google Test C++ unit testing. Currently using gtest 1.6, but I'm happy with an answer for any version. In addition, I want to use a test ...
0
votes
0answers
50 views

Can't build Windows Phone Unit Test App (Could not load file or assembly System.Core, Version 3.5.0.0)

I have a Windows Phone Unit Test App project that was working just fine. Suddenly Visual Studio is no longer able to build it. I get the following 2 compiler errors: Error 1 Could not load file ...
1
vote
0answers
32 views

Using MPI.Net causes VS2012 unit test to fail when run, but succeed when debugged

I'm using MPI.Net for a Visual Studio 2012 project. All the unit tests (standard Microsoft Unit test project) fail if they are run, but succeed when they are debugged. I created a dummy project that ...
0
votes
0answers
24 views

How to remove error come during execution of unit test in vs 2012

[TestMethod] public void Index1() { MovieDBContext db = new MovieDBContext(); //Arrange MoviesController mv = new MoviesController(); //Act ...
0
votes
1answer
76 views

Visual Leak Detector not working with Unit Test in VS2012

I'm using the CppUnitTestFramework of Visual Studio 2012 for unit testing my c++ code. Now I want to check for memory leaks using Visual Leak Detector. So I put #include "vld.h" into my test class ...
4
votes
3answers
122 views

Resharper runs UnitTest from different location

When I run unit tests with Visual Studio it works fine, because it runs from project directory where all assemblies are. But when I run it with resharper it goes with error on var services = ...
2
votes
4answers
85 views

Could we use only one ClassInitialize for all the Unit Testing classes?

I started an internship where my job consists of seting up unit tests on some projects. I have already implemented dozens of tests and now I want to create a mechanism which restores the original ...
0
votes
1answer
66 views

Why is the xUnit Runner not finding my tests

I'm hoping this is a duplicate and will be happy to close it if someone can dig up the original but I can't find anything googleable so want to add this self-answered question so I can refer people to ...
0
votes
1answer
66 views

Unit test Web Forms in Visual Studio 2012

I can't seem to find a walkthough/tutorial/blog posts etc on how to Unit test Web Forms in Visual Studio 2012. MSDN doesn't seem to cover it. The only thing I've been able to gleam from surfing for ...
0
votes
0answers
49 views

VS 2012 - Database Unit Testing - Different connection string for different test cases in the same project

I have a project for Databse unit testing in my Application. I have put 3 of the test cases in a separate folder in the Databse unit testing project and those 3 should run if the name of the database ...
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
53 views

Force Test Methods Implementation for all methods defined in an Database Interface

I am designing a solutions that is capable of changing DataSource from SQL to Oracle and SQLite. For this I am using Unity Framework to implement Lazy Binding. I have created an Interface and wrote ...
0
votes
0answers
33 views

How to simultaneously unit test in windows 8, windows 7 and windows xp

Hie We use visual studio 2012 and tfs 2012 along with windows 8 Currently we are unit testing on build server for wpf using tfs 2012 and windows 8 We want to test in this scenario where if we ...
2
votes
1answer
95 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 ...
5
votes
2answers
115 views

Path of least resistance when unit testing C++ code in an exe, in Visual Studio 2012

I'm in need of some sage advice here. Long story short, I'm rebuilding a - for me - relatively complex app comprised of about 7000 lines of code. I ran into a number of issues when I created the first ...
0
votes
0answers
75 views

Invalid Reference Verson When Visual Studio 2012 Starts

I recently added a unit test project to my existing .net website project. I wrote some unit tests and everything was working fine. We added in a third party testing suit to our development process, ...
4
votes
1answer
420 views

Unit Tests Stopped Working and Stuck in Pending State VS2012

I have a somewhat major issue here and I have no idea how to debug the problem. First off I am running VS2012 Update 2 (v11.0.60315.01). Unit Tests had been running and I noticed today that they quit ...
0
votes
1answer
31 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 ...
1
vote
1answer
192 views

VS2012 doesn't run unit tests

A couple of weeks ago I was working on unit tests, they were building and running as expected. I went on holiday for a week, booted up my machine this morning, and without making any code changes to ...
0
votes
0answers
16 views

Currently running unittest

In the VS2010 test explorer I was able to see which test is currently running, in the VS2012 test explorer I can't. Is there a way to see the currently running unittest in VS2012? I would like to see ...
0
votes
1answer
23 views

What's the use of the metadata in vs2012 native unit tests

what's the use of defining metadata in vs2012 native unit tests? They can be defined in sections that start with BEGIN_TEST_METHOD_ATTRIBUTE(<methodname>) ...
0
votes
0answers
18 views

using WaitForControlCondition in unit-testing

i have a little test project (very easy) you can download my project here www.immobilzero.com/test.zip you can find the HTML page inside i just want click 10 times on the button and if the textbox ...
2
votes
1answer
30 views

Why are Interface contracts not applying outside of assembly?

I'm having a hard time trying to ensure that the (quite simple) contracts I wrote for an interface using Code Contracts are being applied. I have this code in a "shared" dll in one of our projects. ...
0
votes
0answers
49 views

VS2012 code coverage calling WCF web services

I'm developing an application using SpecFlow as BDD framework. The entry point of the application is a WebService with several methods. It seems that the tests launched from SpecFlow features that ...
0
votes
0answers
44 views

VS2012 Unit Test Project and MSFT Ent Lib 5.0

I have the following (but very annoying) problem with this particular type project and Ent Lib 5.0. The reason I am saying it pertains to the fact that it is a Unit Test project related is that the ...
2
votes
2answers
174 views

T4 Templates - Generates Unit Test classes from the classes which implement an interface

I have a large number of classes which all use the same interface. This is the first time this code will have unit tests so I'm trying to think of the best way to generate all of these tests, or the ...
2
votes
0answers
25 views

How to never be prompted to run last successful build when unit testing

I want to know how to get rid of the dialog saying "There were build errors. Would you like to continue and run tests from the last successful build" when I am running unit tests (I use test -> run ...
0
votes
1answer
157 views

visual studio 2012 build uses unittest frame work 10.0->fail

We are using TFS build server having VS 2012 and the team project has unit tests. Previously we had 2010 and all went fine. We reinstalled the server and now we are using VS2012. When unit tests ...
-5
votes
1answer
54 views

Unit test on functions that don't return a value c# [closed]

Can a function containing multiple if else statements and loops can be tested using unit testing? for e.g. public void assignValue(Position p4) { for (int i = 0; i < ...

1 2 3 4