Microsoft's unit testing framework
0
votes
0answers
11 views
Self Host Web Api Unit Test With Area
I'm following some tutorials about creating a HttpSelfHostServer to test my Web Api. The issue I'm having is that my core API is inside an area and I cannot get my routes registered correctly.
...
0
votes
1answer
26 views
How do I run unit tests in VS based on different values of a static variable?
I am trying to write a unit test to make sure the results of a method are correct based on different values of a static variable.
Here is a simple example:
public void TestMethod1()
{
...
0
votes
1answer
62 views
Programmatically create MSTest unit tests
I am looking for a way to programmatically create unit tests using MSTest. I would like to loop through a series of configuration data and create tests dynamically based on the information. The ...
1
vote
1answer
66 views
Unit Testing Entity Framework does not return 100% coverage using shims and fakes?
I'm trying to unit test a repository, but what happen is that when I test it I don't get a 100% coverage rather I get a 0% code coverage on that specific method.
I want to test without using third ...
0
votes
1answer
36 views
Why is azure storage queue access so slow when unit testing?
I ran into some difficulty trying to use unit testing with live Azure Storage Queues, and kept writing simpler and simpler examples to try and isolate the problem. In a nutshell, here is what seems ...
1
vote
1answer
61 views
Simple ResourceManager example not working inside unit test
Trying to follow this: http://msdn.microsoft.com/en-us/library/21a15yht.aspx The problem with the example is it's a mixture of instructions for visual studio users and command line users, but I have ...
0
votes
1answer
37 views
DeploymentItem not deploying files
I am using MS unit testing framework for testing my C# library. I have to open a file which I'm deploying using DeploymentItem attribute. But it is not deploying file to the Test deployment directory.
...
3
votes
4answers
97 views
C# stubbing. Interface for every testable object?
I've seen multiple answers regarding 'how to stub your classes so you can control what happens within the SUT'.
They say one thing:
Create an interface and inject that interface using ...
0
votes
0answers
25 views
No 'Profile Test' context menu in Visual Studio 2012 Professional?
I have installed Visual Studio 2012 Professional, then update 2, and then update 3.
In the unit test explorer, I still do not see a 'Profile Test' kind of context menu when right clicking on a test. ...
0
votes
0answers
52 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
2answers
403 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
32 views
Using a TransactionSccope to test Awaitable function results in a time-out
EDIT:
This problem was already discussed and seemingly resolved here.
I am currently writing unit tests for a DbContext. In order to restore the database (LocalDb) to its previous state after each ...
2
votes
1answer
76 views
Moq unit test to filter products by their categories
I am new to unit testing so I am sure this is a very basic question, but I couldn't find a solution when I searched for it.
I am trying to test to see if I can filter products by their categories. I ...
1
vote
0answers
280 views
Visual Studio 2012 - Exception has been thrown by the target of an invocation.
Simple project in Visual Studio 2012 is causing the following error when trying to load the test explorer:
------ Discover test started ------
Exception has been thrown by the target of an ...
0
votes
0answers
69 views
Test explorer empty in VS2012 after Update 2
After installing Update 2 for VS2012 my test explorer doesn't show the native C++ test classes and methods anymore.
Unless I choose to re-group the tests by class for example (most of the time I have ...
1
vote
1answer
65 views
Comprehensive Unit Testing for a method
I have a controller method - CurrentValues
[HttpGet]
public ActionResult CurrentValues(ValueRetrieverViewModel valueRetrieverModel)
{
int page = 0;
...
0
votes
1answer
192 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 ...
1
vote
2answers
76 views
What Should a Custom Assert Class Do if the Assert Fails?
I created a custom Assert class for unit testing, and I'm not sure what to do when I want to notify that the test has failed:
public static class MyAssert
{
public static void Contains(File ...
0
votes
3answers
130 views
Should I make my Custom Unit Test Assert Class Non-Static?
I use the built in Visual Studio Unit Testing Tools to perform unit tests against CRM 2011. A lot of the tests are Asserting the creation of an Entity.
...
0
votes
0answers
29 views
Visual Studio 2008: “test-->load metadata(*.vmsi)” loaded metadata didnt react, when i change unittestcode in my solution
I'm trying to set up a comparison between Visual Studio 2008 and Visual Studio 2012 Unit-tests. I struggle on the point "test->load metadata". (metadata files)
I created a new solution within a Unit ...
1
vote
4answers
164 views
Unit Testing Framework for ASP.NET MVC? [duplicate]
Would anyone recommend me a unit testing framework for MVC ?
There are a lot of choices which gets me confusing which framework to choose.
NUnit or XUnit.Net or MSTest ??
Thanks,
Venkat
1
vote
2answers
73 views
custom message and default message
Is there a way to specify a message for Assert.AreEqual(object, object, string) that combines the custom message with the default message?
I have the following code:
foreach (var testCase in ...
0
votes
2answers
79 views
How can I assign a category attribute to an orderedtest?
I have a category of unit test methods ("Serialization") all marked with the CategoryAttribute so that I can sort the Test Explorer pane in VS-2012 by "Trait" like this:
I have added an Ordered ...
0
votes
1answer
130 views
Matching reference type parameters by Moq setup
I have similar problem to the one asked here or here but the solutions seems not apply in my case.
Consider the following classes:
public interface IProductsWebService
{
ICObjectLang[] ...
2
votes
1answer
29 views
How to add additional information to Test Result Details
I have some basic unit tests in VS2010 that I'm currently running. I'd like to be able to add some additional information to the Test Result Details screen (When a unit test completes, right click on ...
0
votes
1answer
55 views
“Exception occurred while test discoverer was loading tests”
I'm writing a desktop Windows 8 application, and always get this error when building the project:
An exception occurred while test discoverer 'MSAppContainerTestDiscoverer' was loading tests. ...
0
votes
0answers
53 views
Unit Testing Typeinitializationexception
I'am new to Unit Testing in Visual Studio. Now i want to test a method, which include a database connection to read data. I want to select data on a oracle database.
In my statement iam using ...
0
votes
1answer
76 views
Dependency Injection to the constructor in MS Unit Test using Ninject
I would like to know is there way i could inject dependencies to the constructor of MS Unit Test class using the Ninject.
Here is the code snippet for repository
public Class StudentRepository : ...
2
votes
1answer
61 views
How to stub a method conditionally with VS Fakes?
With moq, you can call Setup on the same method multiple times with different conditions regarding the input:
// Arrange
Mock<IObject> stub = new Mock<IObject>();
stub.Setup(method => ...
2
votes
0answers
269 views
After installing .NET 4.5, previous Unit-Test project fails to build
I have a .NET 4.0 WPF solution that includes a Unit Test project which tests the different commands used in the viewmodels. Everything was fine. Then I installed .NET framework 4.5 and then VS2012, ...
1
vote
1answer
699 views
LocalDb for Unit Testing with Entity Framework 5.0 deployed to AppHarbor
Is it possible to run unit tests in visual studio 2012 against a localDb that is built with Entity Framework 5.0 Code-First? Currently out development is against a SQL Express Server Instance but ...
1
vote
1answer
196 views
VisualStudio - How do i automatically create accessors for base class functions when base class is in another assembly?
I have the following setup. A solution with 3 Projects.
Project A, Namespace A, Class A
Project B, Namespace B, Class B : A
and a Test project for unit tests on B. To access private functions of B ...
5
votes
3answers
323 views
Set Up Test Method with different inputs
I want to test the following method in C# for all code paths.
public int foo (int x)
{
if(x == 1)
return 1;
if(x==2)
return 2;
else
return 0;
}
I've seen this ...
0
votes
0answers
123 views
bindingRedirect is not working with Visual Studio 2012 Test Projects?
I have just created an ASP.NET MVC 4 app with a Visual Studio 2012 Test applicaton. Then I have add some bindingRedirect like,
<configuration>
<runtime>
<assemblyBinding ...
3
votes
1answer
649 views
StreamWriter.WriteLine() is not working
I am trying to write several lines, one at a time, to a .txt file using StreamWriter.WriteLine (Not statically).
const string filename = "BasicTestInfo.txt";
using (var writer = new ...
1
vote
1answer
207 views
Is Visual Studio 2012's new C++ unit testing framework portable?
One of the new features of VS2012 I'm interested in is the integrated C++ unit testing framework. However, I don't want to use it if it locks me in to the the Windows / Visual Studio platform. Does ...
3
votes
2answers
430 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
2answers
597 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 ...
1
vote
1answer
189 views
How to get test result status from MSTest?
In NUnit, I can get the test result from context.Result.State. If its NUnit.Framework.TestState.Success, then I know the test passed.
In MSTest, how do I get that info?
I saw ...
1
vote
1answer
60 views
Is it possible to avoid the build before running the unit testcase in visual studio or resharpher
Consider that i am changing only one test/unittest project, and if i try to run that it builds the unit test project(accepted) and all the other dev projects(which is not really required).
how can ...
0
votes
0answers
178 views
UI Tests fail under VS2012 Analyze Code Coverage
I have upgraded to VS2012 and have an obscure issue. One of my projects originally written with VS2010 has a few hundred WPF UI unit tests, all of which pass fine under VS2012. However, when I run ...
2
votes
0answers
216 views
How to run Microsoft.VisualStudio.TestTools.UnitTesting unit tests programmatically?
Suppose I have a unit test project UnitTests.dll:
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace ...
1
vote
1answer
364 views
Visual Studio 2012: running unit tests with big time overhead / delay
I just started a new project in C# using Visual Studio 2012. VS2012 is up-to-date, so there is no beta or RC installed. When I run my unit tests, there is a big delay. Test summary says, that it ran ...
1
vote
2answers
169 views
Best Practice for Unit Testing valid characters
Given that a method accepts a string as input parameter and given that this string must only contain numbers from 1 to 8 and a dash ("/").
When developing test driven, how would you write a unit test ...
1
vote
1answer
548 views
Errors with Code Coverage in VS2012 unit tests
I am adding unit tests to an existing solution for the first time. This is a legacy solution with a variety of project types. My unit test project references only one other project in the solution ...
0
votes
2answers
244 views
UnitTesting : COM object that has been separated from its underlying RCW cannot be used
I Have created one UnitTesting Project in C# and facing some issues.
Firstly, I wanted to do some Connect functionality that should happen only once in the beginning.
After that i am trying to read ...
1
vote
1answer
876 views
Test Explorer Not Showing List of Unit Tests with Network Drive
I had a simple C# program that had a set of Unit Tests. This was developed on Visual Studio 2010. Now on another computer I tried to reload this solution with Visual Studio 2012 and run the tests. ...
1
vote
1answer
177 views
“Create Unit Test” option greyed out in Visual Studio Premium 2010
Unitll couple of days before, every thing was working and today "Create Unit Test" option in the Database schema view is greyed out. I have checked all the references and are in place properly. Any ...
1
vote
1answer
139 views
VS2012 run new instance of program after test method is run
I have a static configuration class that gets loaded up with values when the program starts, and any further attemps to modify it throw exceptions.
Unfortunately, VS2012's unit testing suite retains ...
2
votes
2answers
329 views
Visual Studio unit testing - multiple cases like Nunit
In Nunit one can reuse a test method for multiple cases.
[TestCase(12,3,4)]
[TestCase(12,2,6)]
[TestCase(12,4,3)]
public void DivideTest(int n, int d, int q)
{
Assert.AreEqual( q, n / d );
}
How ...




