Tagged Questions
0
votes
1answer
32 views
MS Visual Studio Unit Tests take forever to close - even if there's no code in the test
Why would this be happening? I have a no code in my test:
[TestClass]
public class ApiClientTest
{
[TestMethod]
public void ApiTestSampleUseCase()
{
TestCleanup();
}
...
0
votes
1answer
21 views
How to troubleshoot deployment issues when running tests with visual studio?
In VisualStudio (2010 and 2012) :
is there an efficient way to troubleshoot deployment issues when using DeploymentItem attribute?
I currently must wait for test execution to realize that the items ...
0
votes
1answer
27 views
Create a Control in Unit Test for WPF application
I have a WPF-application with a method which takes in a TextBox and return true or false. I have created a Test project, but I cannot create an object of a TextBox to test my method. Is it not ...
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 ...
0
votes
2answers
50 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;
}
...
0
votes
0answers
21 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 ...
0
votes
1answer
42 views
Unit Testing Monotouch under Visual Studio
I have a Monotouch iOS application that I'm writing in Visual Studio using Xamarin's new Visual-Studio plug-in.
I would like a way to execute my Unit tests from within Visual Studio (e.g. with the ...
0
votes
4answers
85 views
Is it possible to perform unit testing on dll's methods without an executable during build process?
I have 63 DLL's with various C++ methods in each. I want to validate the output of some of the methods with fixed input values. I'm wondering if it is possible to do unit testing in the DLL itself ...
0
votes
1answer
19 views
Visual studio unit testing on insert and delete methods
I am using Visual Studio to test some insert and delete methods in the database. I need to have separate testing methods for the insert and delete methods.
My problem is that I can't test either of ...
1
vote
0answers
30 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 ...
2
votes
1answer
94 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 ...
2
votes
1answer
56 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
0answers
34 views
How to open a file from the project in a native C++ unit test (Visual Studio)?
I have a native C++ unit test project in Visual Studio (2012).
In one of my tests I would like to read a file included in my unit test project. Is it possible? What properties of the file should I set ...
0
votes
1answer
34 views
Visual Studio editor loosing focus when unit testing
This may be a trivial question but I had no luck finding an answer so I ended up asking by myself.(I apologize if there already is a same question...)
I'm using VS2012 + Resharper + TestAfterBuild ...
2
votes
1answer
66 views
Google Tests in a DLL
I want to write unit tests using Google Test / Mock for code in my DLL. The test code is supposed to be compiled into my DLL.
I read in the Google Test Primer that this is possible, but that gtest ...
2
votes
2answers
230 views
Visual Studio Ordered Tests running twice
So I have a very simple setup to initialize a LocalDB database to run some integration tests.
In my setup, I'm initializing my tests as follows:
[AssemblyInitialize]
public static void ...
0
votes
0answers
19 views
MixedMode DLLs in Unit Tests - Visual Studio Quality Tools
I'm facing a situation where I'm getting the following error:
The solution is to set this in the app.config:
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime ...
0
votes
0answers
26 views
How to amend expected status codes in Visual Studio Web Performance Tests
How do you (or even can you) amend the expected HTTP status codes in a Visual Studio Web Performance Test?
I'm checking some new bits of a clients site, so using some Visual Studio Web Performance ...
1
vote
2answers
194 views
Using ReSharper, how to show debug output during a long-running unit test?
I'm using xUnit with the ReSharper test runner and the xUnitContrib resharper plugin.
When I have a long-running test, I'd like to be able to output some progress indicator to the Unit Test Output ...
0
votes
2answers
56 views
asp.net Unit Test: Mark test as incomplete
I'd like to unit test a asp.net MVC webapplication.
We're not using TDD (well, not yet).
After touching a method I'd like to mark the appropriate unit test as incomplete or something so the other ...
0
votes
1answer
88 views
Developing C++ DLL with executable unit test that compiles and links at the same time?
I'm developing a C++ project in Visual Studio 2012 that uses driver code to interface with an open DMX box(ENTTEC DMX USB PRO). Thus far, I've been writing code and compiling as an EXE so I could use ...
0
votes
2answers
127 views
Visual Studio, difference when running tests in visual studio and on build server
We have the following setup:
Visual Studio 2012 / SQL Server 2012
TFS 2010, Build Server runs unit tests automatically on build.
A solution with lots of code and 2 Test Projects (so 2 separate ...
0
votes
0answers
66 views
Files disappear when running unit test in VS2012
I have a solution in VS2012 which includes a project A which contains folder 'Configuration' with a number of different files organzied in a small folder structure. All files in the structure are ...
0
votes
0answers
76 views
Visual Studio 2010 throws exception on running unit tests
When I run the unit tests, Visual Studio throws following exception
Exception of type 'System.Exception' was thrown.
Even it's not possible to run any of the tests, which means it's a setup ...
2
votes
1answer
733 views
C++ Unit Test in Visual Studio 2012
Good day,
I am working with Microsoft Visual Studio 2012 Ultimate to write C++ applications. I got that version from my MSDNAA access. My Problem is that I want to create unit tests for the C++ ...
1
vote
0answers
70 views
Resolving DLL paths when running Unit Tests from VS IDE
Product: VisualStudio 2012 and its Testing infrastructure
I have a solution (MySolution) with one C++ DLL project (MyClassLib.dll) and one Unit Test project (TestMyClassLib.dll)
When I build the ...
1
vote
1answer
66 views
Class files are missing in code coverage result
I have a number of classes in my project. When I check Code Coverage result after running the unit test cases, it does not show all the classes. I am not sure what are the criteria on which the code ...
2
votes
1answer
94 views
How do I persist variables between tests in MSTest?
I'm using MSTest (VS2008) and I need to persist a variable between tests. However the variable gets re-initialized between every test.
According to the third point mentioned in this answer,
...
5
votes
1answer
2k views
Visual Studio 2012 Professional - unit tests not working
After building my application I get in the test output:
------ Discover test started ------
Exception has been thrown by the target of an invocation.
========== Discover test finished: 1 ...
1
vote
1answer
206 views
How can I run SharePoint tests using the NUnit Test Adapter for Visual Studio 2012?
The NUnit Test Adapter for VS 2012 allows you to run NUnit tests from within the Visual Studio 2012 IDE via the Test Explorer. However, the reason I have NUnit tests in the first place is because I ...
0
votes
2answers
318 views
Writing Unit Tests in visual studio 2010 for 'Rock, Paper and Scissors' game
I'm new to programming, OOP and Unit Test so please forgive me for my lack of knowledge.
As part of my Rock, Paper and Scissors game I have a abstract superclass (Weapon) which has subclasses (Rock, ...
2
votes
1answer
94 views
ReSharper not saving and restoring Unit Test Sessions
While using ReShaper's test runner to run MSTests, with this option set to true for
ReSharper > Options > Unit Testing > Save and restore Unit Test Sessions
Upon closing and reopening solution, ...
1
vote
1answer
73 views
Seperate visual studio solution for unit testing?
I have a visual studio solution that contains around 18 projects. I want to write unit tests for those projects (by creating a test-project that contains unit tests against each source project).
...
0
votes
0answers
59 views
How do I get VS2010 to recognise C++ unit tests?
I have a VS2010 solution with two projects. An unmanaged C++ project to create an unmanaged static library, and a managed C++ test project (from the test project template). It all builds and links ok, ...
0
votes
2answers
380 views
Can't debug NUnit tests with Visual Studio
Trying to debug an NUnit test in VS2010 and is not stopping on the breakpoint. It was working the last time I tried need to debug the test (maybe 1 yr ago) but now it doesn't work.
I've tried the ...
0
votes
1answer
33 views
What is the equivalent of TestPropertyAttribute available for class, not method
Is there the equivalent of the TestPropertyAttribute available for a class? I'd like to mark a bunch of tests with a property, without having to mark each test.
Thanks in advance.
1
vote
1answer
219 views
Assert.ThrowsException in async function unit test?
I try to make a test method to test some simple data downloading. I made a test case in which downloading should fail with HttpRequestException. When testing its non-async version, test works great ...
1
vote
2answers
80 views
A unit test cannot access settings in another project
In Visual Studio, I have a unit test that calls a method on a class in another project - let's call it MyClass.A().
Inside A(), it accesses a setting in MyClass' project properties.
When I use ...
1
vote
1answer
492 views
Grouping unit tests by class name in Visual Studio 2012 (Update 1)
Is it possible to use the new features of Visual Studio 2012 Update 1 to group unit tests by class name?
I know this wasn't possible in the original release, but, it looks like some enhancements ...
3
votes
1answer
353 views
Unit Testing - Extending the Visual Studio Unit Test Type - Not working
We're asked to move from NUnit to MSTest and now have to convert all the existing tests to the new platform. Most of it converted fine but we have an issue with parameterised tests. We found the ...
1
vote
0answers
158 views
Unit-test for application with Google Test framework in Visual Studio
I'm trying to organize unit-testing of classes in my application.
First of all, it's an application, so it has its own main function. As far as I understand I need to create a separate application ...
0
votes
1answer
44 views
Test Explorer's test results don't match with those from debugging
I have written some simple tests in Visual Studio 2012 using gtest and every one of them passes as I would like to but as they pass in the command line one of them fail, namely the one that expects a ...
1
vote
2answers
502 views
Visual Studio C# unit testing - Run Unit test with varied/multiple test initializations, Run same unit test multiple times?
What i want to do is this :
Create a bunch of Unit Tests.
Create a variety of different permutations/combinations of initialization of mocks, input variables etc.
Run each given unit test with a ...
2
votes
2answers
158 views
The TestContext.TestName property NEVER changes
GOAL:
I want to use the TestContext.TestName property to extract the name of the test being ran so that my [TestCleanup] function can log the outcome to our bespoke results repository, automatically ...
0
votes
1answer
107 views
Visual Studio Properties window for Unit Tests?
I found a blog entry that talks about the "Unit Test" property window, shown here:
(Credit: image home is here)
My question is that I can not for the life of me get a "Unit Test" to populate in the ...
0
votes
1answer
62 views
Why is referenced dll getting locked while debugging under Resharper/MSTest?
I have an integration test for a method in assembly A. Assembly A references assembly B via project reference. I run them under the Visual Studio 2010 debugger in a Resharper 6.1 unit testing ...
2
votes
2answers
84 views
What is the scope of a test class when running unit tests?
When Visual Studio is running unit tests, it runs many tests simultaneously. What exactly is the scope of the test class while these are running. Are they all run in separate app domains or is data ...
1
vote
1answer
154 views
Unit testing a custom control in a windows store project
I want to unit test the custom controls I create for a windows store project. Just simple things like "there is a button when X is true".
However, I can't seem to even instantiate the controls in a ...
1
vote
2answers
233 views
Run unit test before check in
Using Visual Studio and TFS & preferably Specflow or standard unit test.
I want devs to run ALL unit test as a policy before check in. If a unit test breaks, then vS should stop them from ...
0
votes
1answer
237 views
UI Tests Visual Studio 2012
I am recording tests in visual studio 2012 for one of my project, it recorded the first one and after that I paused generated a method and after resuming and while generating code for this it says ...



