Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
6answers
3k views

What is the best Nunit test runner out there?

Having recently gotten into test driven development I am using the Nunit test runner shipped as part of resharper. It has some downsides in terms of there is no shortcut to run tests and I have to go ...
5
votes
1answer
370 views

Resharper - NUnit - VS2010: Out of memory exception

When I run my nunit tests using the test runner in resharper, I get an OutOfMemory exception. It appears to me that as a test suite runs, it consumes memory over the duration of the suite, and only ...
2
votes
2answers
45 views

Automated testing against third party library that maintains a singleton state internally

My code is using a third party library that employ a singleton pattern deep down inside it. On first access, the library uses windows environment variables to identify a configuration folder from ...
2
votes
1answer
310 views

Can mspec tests run in the native Visual Studio 2010 test runner?

I have mspec running with R#, but my client doesn't have R# and doesn't plan on getting it. :( I want my test suite (written completely with mspec) to be valuable to my client, so it would be HUGE if ...
2
votes
1answer
801 views

MSBuild to run unit tests

I am trying to configure CruiseControl .net to build our repository code periodically and run the tests included in the solution. I have configured the retrieving code from the svn server and building ...
2
votes
2answers
167 views

Run all open tests in Visual Studio

Is there an easy way to run all tests in open test classes in Visual Studio. I find that this is what I most often need to do. Mostly I use Resharpers or TestDriven.NET testrunners, and I cant find ...
2
votes
2answers
882 views

JUnit Test Runner that creates tests just before running them

I use JUnit 3.x TestRunner that intantiates all tests at once before running them. Is there a Test Runner available that would create each test (or at least each test suite's tests) just before ...
1
vote
3answers
234 views

Need a real time, automatic, background compiler and test runner for C# .Net

I have googled around and played around with test scripts (powershell/spec/nunit/msbuild). I am looking for a test runner that will monitor my code and will continuously rebuild and rerun all my tests ...
1
vote
0answers
77 views

Handling mouse events using Microsoft Test Management and the Test Runner

In toying around with test automation using MS Test Manager with a WPF application, I noticed that while recording the tool does not necessarily record user input in the form of mouse clicks and ...
1
vote
1answer
130 views

Run all test in file with ReSharper 5.x and VS2010

Is there a way I can tell the R# (5.x) test runner to run all the MSpec specs in the current file? Something like the Ctrl+R + Ctrl+T shortcut of the Visual Studio test runner is what I'm after, be ...
1
vote
1answer
318 views

Playframework test-runner selenium permission denied Location.href and Command Execution Failure

This test works locally, but when run from the Play test runner on our aws ci instance, I get the following permissions error in Firefox: Permission denied for HOST to get property Location.href and ...
1
vote
0answers
114 views

Passing data around in a custom NUnit test runner

I'm attempting to write a custom NUnit test runner to integrate into our application and I've managed to get a TestRunner object created and running some tests. Next I would like to be able to pass ...
1
vote
0answers
101 views

Running T4-generated nUnit tests - which test runners support and how?

In our solution (EF4, WCF, MVC2), we have a very large amount of T4 code generation going on, FAR beyond the EF4 stuff. In fact, we even generate a large number of services as well. Since we can ...
1
vote
2answers
65 views

How to make Gallio remember which categories of tests I want to run when reloading the Tests Explorer TreeView?

If I have a loaded assembly in Gallio, and I select a couple of Tests and click "Start" it will run those tests and still remember which tests were selected. On the other hand, if I hit "Reload", it ...
1
vote
1answer
349 views

BDD with Machine.Specifications in Visual Studio 2010

I'm beginning to get the grips of BDD and MSpec, but I'm still really bugged by the fact that I'm unable to debug my tests/specs, and that I have to leave the IDE to go to a html report file to see ...
1
vote
1answer
391 views

Unit tests and Test Runner problems under .Net 4.0

We're trying to migrate a .Net 3.5 solution into .Net 4.0, but are experiencing complications with the testing frameworks that can operate using an assembly that is built using version 4.0 of the .Net ...
0
votes
1answer
34 views

How do I set the -noloading option in the junit4 test runner inside eclipse

In order to run my apache axis integration tests from inside eclipse, I need to set the -noloading option on the eclipse junit test runner. Does anyone know how I can do this?? I am using eclipse ...
0
votes
1answer
73 views

i am trying to develop a test runner in python

Any pointers ? Suggestions ? Opinions ? I am thinking here is a draft specification: Can run individual test methods Can run a single Test Class Rsult in XML Result in HTML Dry-run Calculate and ...
0
votes
2answers
464 views

groovy, Junit4 unit test, and related test runner

I'm trying to write Junit4 test cases for my Groovy code. The Junit 4 test case works fine inside my Eclipse IDE which is SpringSource Tool Suite. I can't get a test running to run the all of the ...
0
votes
2answers
2k views

Setting up Hudson with Selenium RC to run tests written in C#

I just deployed a Hudson server and configured it to checkout, build and deploy to a testing http server. Now I want more =) I have some Selenium RC tests wrtten in C#/.Net, using the MbUnit ...