Tagged Questions

4
votes
1answer
37 views

TFS Build and Test Impact

I'm playing around with the Test Impact feature of TFS build. It seems like you cannot use this feature if you are using a .vsdmi file, but only if you use a .testsettings file (although the VSDMI ...
4
votes
2answers
2k views

TFS 2010 Build Automation - Enabling Code Coverage

How do you enable code coverage for unit testing in TFS2010 automatic build? In Visual Studio 2010 we enabled Code Coverage for our test projects (Test --> Edit Test Settings --> Local Test Settings ...
3
votes
1answer
501 views

Running Unit Test Projects on TFS 2010. Team Build 2010 Is Not Compiling Test DLLs

I have set up a TFS 2010 Team Build Configuration to run continuous builds. I currently have 2 Test Projects that run inside Visual Studio 2010 IDE with no problems. When I queue the solution (with ...
3
votes
2answers
555 views

Running Silverlight unit tests in TFS 2010 build

Hey, we have some silverlight unit tests running successfully in VS 2010. I am using the silverlight unit test framework (http://silverlight.codeplex.com). For Example: /// <summary> ...
3
votes
2answers
692 views

How to run unit testing tests from command line?

I googled and found the below helpful references. Currently I want to run all from the command-line (for easy of execution & quickness) in cases: A specific test (ie. a test written by a method ...
2
votes
1answer
73 views

Run tests in TFS 2010 with a different identity

Is it possible to run the tests on TFS 2010 with a different identity ? The code being tested require higher privileges ( Active Directory, Filesystem manipulations) than the ones the current account ...
2
votes
2answers
366 views

Run xUnit tests from TFS2010

I'm trying to work out how to run xUnit tests from TFS 2010. I found some articles on how to achieve that with the older version ...
2
votes
1answer
386 views

Code Coverage report on unit tests for Windows CE code using TFS 2010

I have a unique combination of platforms in my solution that has stumped me. We need to generate code coverage statistics for unit tests that we're writing for our Windows CE code. We're using Visual ...
1
vote
3answers
99 views

How to enable code coverage without using Visual Studio?

I have 80+ VS2010 solutions, each contains some unit test projects. All solutions are merged into one big solution before build process. All tests (or some test subset) are executed after the ...
1
vote
2answers
295 views

Unit tests aren't run with multiple build configurations in TFS 2010

I am using MSBuild in my TFS Buildprocess using the DefaultTemplate to build multiple configurations(Debug/Release) of the same solution. When I build only release or only debug the unit tests are run ...
1
vote
2answers
259 views

vs2010 unit tests aborting for no reason

We recently had our TFS 2008 server go down. It was rebuilt with TFS 2010 server. Now, when I selected VS unit tests and run, the first few are marked as "Aborted" and the others are "Not Executed"... ...
0
votes
1answer
31 views

Branching a solution that contains unit tests and source control structure?

Here is an example of my source control structure in TFS 2010: TFS Project Development Branches Source Tests Under my Source directory I have created a directory ...
0
votes
1answer
41 views

Windows Virtual Test Environments - Hyper-V based

im doing automated software testing with hyper-v, tfs and so on. since our software is supposed to support every ms os since xp sp3 there is a lot of different os versions to run the tests on. my ...
0
votes
1answer
77 views

Creating automatic tests for embedded resource in Visual Studio and Team Build?

In my current .Net 4.0 solution, I have one project containing a lot of XML files as embedded resources. There is a lot of development activity going on with these files and there is a very real ...
0
votes
1answer
327 views

Automated tests on TFS 2010 using a test assembly file specification

I'm using TFS, it works fine. Now I want to add tests and code coverage. So I create a Local.testsettings. Running tests on my computer runs fine. Configuration of the TFS Build is as follows: - ...
0
votes
0answers
46 views

Check whether a test is run on TFS

Is there a way for a test to determine if it is executed on a TFS-Server?
0
votes
1answer
202 views

How to publish Boost Unit Test results into TFS 2010

I'm trying to figure out what would be the best option to publish boost unit test results into a TFS 2010 system. I know the boost test results have to be exported into xml format and then this xml ...
0
votes
0answers
253 views

Build VS2010 .NET 4.0 solution with unit test on TFS 2008 and TFS 2010 fails with exception: securitytoken not marked as serializable

We build a VS2010 solution with .net 4.0 with unit tests on a TFS 2008. And are getting the following exception: NOVA\QTAgent32.exe, DataCollectorNotificationsHelper.RaiseTestFailedEvent: Exception ...
0
votes
1answer
228 views

TFS Check-in Policty for Unit Tests

Is it possible to enforce that every check-in to TFS has an associated unit test with it? Even if the associated unit test is just a shell? I don't want to allow code to be checked in without the ...
0
votes
1answer
614 views

Why does Coded UI Test Builder show MSAA for WPF controls instead of UIA

Question When I select a WPF control with the crossline of the Visual Studio 2010 Coded UI Test Builder (screenshots), it shows that the used accessibility technology was MSAA. Why is it not UIA? ...
0
votes
2answers
677 views

Unit tests failing on TFS2010 Beta 2 written in VS2008

I've just setup TFS 2010 Beta 2 on our server and it's running fine. I've checked-in my solution which is written in Visual Studio 2008 SP1, with a main Class project and Unit test project. Source ...