For issues relating creating and running unit tests using NUnit, version 2.5.9.
0
votes
0answers
13 views
Run Nunit with visual studio support [duplicate]
I am using Visual Studio 2010, I found this article below. How to do in visual studio 2010?
Running From Within Visual Studio
The most convenient way to do this is to set up a custom tool entry ...
0
votes
0answers
48 views
visual nunit tool will not pick test dlls present in other drive
I am using Visual studio 2010 and recently I have installed Visual Nunit tool to run Nunit tests via UI.
My source code exists in G: drive.
My output is generated in V: drive
When I build solution, ...
1
vote
1answer
96 views
RhinoMocks Testing a Service
I am using Sharp Architechture and Rhino Mocks with NUnit.
I have a test service that looks like this
public class TestService : ITestService {
public TestService(ITestQueries testQueries, ...
0
votes
1answer
104 views
Difference between NUnit and NUnit.Runner
What is the difference between NUnit and NUnit.Runner packages?
1
vote
1answer
67 views
How to get the thrown exception using Assert.That, à la Assert.Throws<T>
I have some code which asserts an exception is thrown when a method is called, and then asserts various properties on the exception:
var ex = Assert.Throws<MyCustomException>(() => ...
1
vote
1answer
470 views
Getting No Test Results after customising the build template for nunit tests in TFS 2010
I have followed the link for integrating nunit in TFS as part of TFS build. http://danderson00.blogspot.com/2011/10/running-nunit-tests-under-tfs-build.html using NUNITTFS
It is running the nunit ...
1
vote
1answer
444 views
WebDriver test using Google Chrome hangs when executed via build process using TFS/NUnit
I'm having an issue with Selenium WebDriver, Microsoft Team Foundation Server, NUnit and Chrome/ChromeDriver. I'm hoping that maybe someone can offer some insights or point me in a direction to ...
1
vote
1answer
201 views
Can VS2010 generate NunitTest cases?
There is option of Create Unit Tests in VS2010.
It creates a separate test project and uses MS test frame work. Is it possible for configure VS to use Nunit framework to create unit test cases?
0
votes
1answer
148 views
Failed to run nunit tests on windows 2008
I am using selenium and nunit 2.5.9 to run tests under windows 2008. But After running the test server seems to stuck at Launching Firefox and nothing happens afterwards.It just open the page and ...
3
votes
2answers
267 views
piece of code works in console application, but does not works inside nunit test
Simple console application open connection without any problems:
static void Main(string[] args)
{
string connectionString = String.Format(
...
2
votes
1answer
445 views
NUnit 2.5.9 Problem
Good morning, afternoon, or night,
I am trying to use NUnit 2.5.9 to run some unit tests contained in an assembly built with Visual Studio 2010 which targets .NET 2.0. However, I keep getting a ...
4
votes
1answer
223 views
After upgrade, Unit Tests run timeout after an hour when they used to finish in 15 minutes
We upgraded our unit test project from .NET 3.5 to .NET 4.0. We also upgraded NUnit from 2.5.2 to 2.59. Now the unit tests time out after 50 minutes when they used to finish in about 15 minutes. These ...
0
votes
1answer
580 views
Using NUnit to unit test WCF RIA Services in a Silverlight 4 App
I have recently tried using the Silverlight NUnit Project template (the one from Jamie Cansdale found here) for a Silverlight 4 project that uses WCF RIA 1.0. I seem to be close, but I still cannot ...
0
votes
2answers
208 views
NUnit 2.5.9 and WebAii
I'm attempting to write my own NUnit tests for a Silverlight application using WebAii. I've been attempting to follow a rather detailed blog over at ...
1
vote
2answers
592 views
NUnit 2.5.8 requries NUnit.Framework 2.5.5 to run. How can it be?! And what for?
I'm getting a dumb exception on nunit.exe launch attempt:
System.IO.FileNotFoundException: Could not load file or assembly 'nunit.framework, Version=2.5.5.10112, Culture=neutral, ...
7
votes
3answers
2k views
Nunit - TestContext.CurrentContext.Test not working
I am using nunit 2.5.9.10348 and trying to extract the current test name in the TearDown event so I can assign a screengrab filename the test name however it is always null (see the attached image). ...