-1
votes
2answers
62 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
27 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
1answer
26 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
2answers
119 views
+50

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
2answers
49 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; } ...
3
votes
2answers
49 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
66 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
0answers
18 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
86 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
71 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
0answers
29 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
72 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 ...
1
vote
0answers
38 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
12 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
48 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 ...
2
votes
1answer
89 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
38 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 ...
2
votes
1answer
52 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
30 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
1answer
24 views

MSTest doesn't find updates in tests

I have a Visual Studio 2010 test solution where I am using MSTest. I will be adding multiple test projects for different components in the future. Recently, when I added a new test project (the ...
1
vote
3answers
52 views

What's the best practice in organizing test methods that cover steps of a behavior?

I have a FileExtractor class which a Start method which does some steps. I've created a test class called "WhenExtractingInvalidFile.cs" within my folder called "FileExtractorTests" and added some ...
0
votes
0answers
43 views

What is the default value for test priority when PriorityAttribute is not set?

On TFS build server, I want to run tests that does not have PriorityAttribute set and tests that have priority set to 5. How can i write in "test case filter" that test "does not have priority set"? ...
0
votes
1answer
93 views

Simulate a delay in execution in Unit Test using Moq

I'm trying to test the following: protected IHealthStatus VerifyMessage(ISubscriber destination) { var status = new HeartBeatStatus(); var task = new Task<CheckResult>(() => { ...
5
votes
1answer
151 views

How to set test category for all tests in the class

I am using MsTest, and I want to set the same test category for all methods in test class at once, without setting TestCategory attribute to each method individually. How can this be done? The most ...
0
votes
2answers
96 views

When working with MSTest, how to deployment a test data folder to the TestResults directory?

When working with MSTest, how to deployment a test data folder to the TestResults directory? In my UnitTests project, I have a TestData folder containing some xml files as test data. I've updated ...
0
votes
1answer
77 views

What is the usage of Assert.Equals? [closed]

I am working on Unit Testing for my current project and came across something odd. The .Net UnitTesting library has both Assert.Equals and Assert.AreEqual. The remarks for Assert.Equals say to use ...
1
vote
1answer
49 views

Data Driven Test Removes Whitespace

I am writing a unit test to test the following method. public void MyMethod(string parm1) { // Validate parm1. string[] invalidTokens = new string[] { "/", "{", "}", ".", "--", ";", " ", ",", ...
0
votes
0answers
84 views

Unit Testing method failing with lambda expression

i am trying to write a unit test method **[TestInitialize()] public void MyTestInitialize() { _mocks=new MockRepository(); MockFactory.Reset(); ...
0
votes
0answers
36 views

Unit Test Generation Error : Test Generation is only supported on non test projects

I just started learning MS Test framework in Visual Studio. I am trying to generate unit test for a page method in my (asp.net) website using right click to select "create unit test". I haven't ...
1
vote
1answer
58 views

MSTest fails when I do run all, but works otherwise

So I have a Testclass using MSTest and every test works great if I run them one and one, however if I select 2 tests, namely can_register and cannot_Register_existing_username then the second fails ...
0
votes
1answer
124 views

MsTest wp8 TestInitialize and TestCleanup not running before and after each DataRow of a DataTestMethod

Below you can see some code written with Mstest in a Window Phone Unit Test App. I have a normal TestMethod called TestMethod1, and a DataTestMethod called TestMethod2 which has three DataRows: ...
1
vote
2answers
107 views

Unit testing methods that have multiple complicated objects as parameters in MSTest

I am presently working on a project that has methods which have as parameters, complicated objects (mostly Repository objects). The testing has to be done using MSTest. Would it be a wise approach to ...
0
votes
1answer
45 views

Conditional unit tests

This seems to be a touchy subject so I'm probably just going to get a lot of hate for this one, but here goes nothing: The application I'm working on heavily relies on an external API, and that API ...
3
votes
1answer
76 views

Asserting unverified added properties to an object in a unit test

I have MSTest (VS 2012) unit tests where I want to assert that the various properties of an object have the values I want. There are many ways to do this. However my main concern is that if a new ...
2
votes
2answers
220 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
2answers
171 views

TFS not deploying referenced assembly to test dir when on build server

I have Coded-UI test project that has references to other assemblies in solution. Somehow some assemblies are not copied to TestResults/Out directory, while others are copied. All assemblies have Copy ...
0
votes
1answer
93 views

CoreDispatcher in a unit test with reactive extensions

I have the following bit of code in my Windows 8 Store app: public static void ConvertUpdateStreamToCollection<T>(this IObservable<UpdateInfo<T>> input, ...
1
vote
2answers
186 views

Async unit testing with portable class libraries

I have a portable class library that needs to target at least .net 4.5 and Silverlight 5. I'm running into an issue trying to write MSTest unit tests in VS 2012 because my library does not use the new ...
0
votes
1answer
60 views

Why am I recieving InvalidComObjectException from MS Test unit tests, but only on the build server?

I have a compatibility later project which happens to make calls to COM, for which I have some unit tests. When I run these tests from my local machine, everything goes just fine. But when these ...
0
votes
1answer
171 views

Unit Testing in MVC not creating/accessing database

I have a solution with an MVC project containing a Services project on top of a Core project. I just added a Unit Tests project and referenced Core and Services - I'm trying to test Services. I ...
0
votes
1answer
183 views

writing unit test cases

In my project we are dealing with database (SQL server 2008). Reading, inserting, deleting and updating data. Some of the SQL script is created by xml automation tool and some are manually written by ...
91
votes
4answers
2k views

Why does this assert throw a format exception when comparing structures?

I'm trying to assert the equality of two System.Drawing.Size structures, and I'm getting a format exception instead of the expected assert failure. [TestMethod] public void AssertStructs() { var ...
0
votes
0answers
43 views

sitecore unit test MSTest version of codeFlood application

We use MSTest for unit testing through out our organization. We would like to go with option of Load Runner using HTTPContext object. However, codeFlood Load Runner is based on NUnit. Could someone ...
2
votes
3answers
176 views

Assert in Try..Catch block is caught

Just came across some interesting behavior - Assert being caught by Catch block. List<Decimal> consArray = new List<decimal>(); try { Decimal d; ...
0
votes
0answers
65 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 ...
1
vote
0answers
79 views

how to test moq void methods

I want to check whether call to method Update of object RealtyObjectEntityRepository was performed. I have the following method in my service: public void UpdateRealtyObject(RealtyObjectDTO ...
1
vote
1answer
136 views

Resetting a Static Variable at the Beginning of each MSTest Test Method

I have a N number of MSTest test classes and methods in the same test assembly in the following manner (which makes use of the same static variable). [TestClass] public class TestClass1 { ...
0
votes
3answers
73 views

Comparing text in a unit test

I need to compare two lumps of text for any differences to ascertain whether my unit test has passed or not. Unfortunately the text is about 500 characters long and if only one character differs it ...
1
vote
1answer
231 views

Running multiple Unit Tests in an unit test project

I am currently working on a project using C# and Visual Studio 2012. I have a hard time trying to figure out why VS 2012 does not want to run all of my tests. I have one test projects which runs 1 ...

1 2 3 4 5 11