NUnit is an open source unit testing framework for Microsoft .NET written in C#. It serves the same purpose as JUnit does in the Java world, and is one of many in the xUnit family.

learn more… | top users | synonyms

4
votes
0answers
85 views

DotCover in TeamCity 8 doesn't work

I try to run dotCover with my NUnit tests, in the TeamCity 8 as a build step. But no metter what I try I always get the same error in the log file: Step 4/4: Coverage (NUnit) (1s) [Step 4/4] ...
4
votes
0answers
46 views

Examples of a working ITestCaseProvider implementation for NUnit?

Does anyone have any working examples of an ITestCaseProvider? The samples I've come across, don't get picked up by the any test runnings - GUI, Console or Resharper (I've put the assembly in all the ...
4
votes
0answers
1k views

SpecFlow + WatiN + NUnit + TeamCity on Windows Server 2008 R2

I just recently ran into some trouble setting up a fully automated nightly build / testing / deployment environment. To explain the setup in short. We use Mercurial as source control system and ...
4
votes
0answers
264 views

Why is NUnit hanging from the command line, but not under TestDriven.NET?

If I start my unit tests from TestDriven.NET under VS2008, they run pretty much immediately. If I start my unit tests using nunit-console.exe, the NUnit console hangs for five minutes before ...
3
votes
0answers
24 views

How to exclude class name from the name of the inherited test in NUnit

I have a base class with testcases(methods). Also I have another class inherited from base class with some overloaded test cases(methods). The issue is that names of inherited testcases(in ...
3
votes
0answers
108 views

nunit-agent seems to be failing to load probing privatePath from tests configuration

Previously, when I had only Visual Studio 2010, my unit tests were executing fine. Basically, my tests are composed of two files: UnitTests.dll and UnitTests.dll.config. Where UniTests.dll.config had ...
3
votes
0answers
305 views

Nunit 2.6 + Resharper 7 +NCrunch + visual studio 2010

I did have a good time with Nunit 2.6 + resharper 7, but after I install Ncrunch. My visual studio 2010 just fall apart . Cannt run Unit Test inside the Unit Test Sessions. Error Message: The ...
3
votes
0answers
442 views

NUnit components for version 4.0.30319 of the CLR are not installed

I am trying to implement an automated build process. After the build, the unit tests on nunit-console.exe are run. The following error is displayed: > c:\nunit_2.5.10\nunit-console.exe ...
3
votes
0answers
119 views

Can nunit-console list all test names in a test fixture?

I'd like to report them before they're run, and have the option to run individual tests through shell scripts without managing categories. We have some unmanaged code which can leave the process in a ...
3
votes
0answers
272 views

monodevelop and nunit integration

I use MonoDevelop from several years but I'm now having problem with NUnit plugin. I've started a new simple project with few tests... The binary is tested without problem from nunit-console, but ...
3
votes
0answers
638 views

How to setup Binding redirect with Nunit's gui runner?

I am trying to run my unit tests with nHibernate 3 and fluentnHibernate, To do this I need to setup a assembly binding redirect so fluentnHibernate will work with the new version of nHibernate. I ...
2
votes
0answers
20 views

How to get current TestContext in TeamCity NUnit runner

In NUnit, it is possible to get the current test with NUnit.Framework.TestContext.CurrentContext. When I run tests on my local machine, this is correctly populated during testing. However, when pushed ...
2
votes
0answers
43 views

Create NUnit tests analogous to a MbUnit TestSuiteFixture

Is it possible to achieve the same (or close to the same) functionality as a MbUnit TestSuiteFixture using NUnit? I need to generate sets of dynamic test cases and MbUnit's TestSuiteFixture is the ...
2
votes
0answers
72 views

Profiling C++/CLI NUnit tests

Is it possible to profile C++/CLI NUnit tests with Visual Studio 2012? The Profiler always wants to have an Executable.
2
votes
0answers
51 views

Is there a way to Create nunit Setup with arguments

Is there a way to add arguments to an nunit setup method like this: public void SetUp(Point p = null) { /*code*/ }. I tried it and got the following exception SetUp : ...
2
votes
0answers
548 views

NUnit: Could not load assembly nunit.framework

Trying to execute a unit test which references nunit.framework fails: System.IO.FileNotFoundException: Could not load file or assembly 'nunit.framework, Version=2.5.10.11092, Culture=neutral, ...
2
votes
0answers
553 views

Finding code coverage in visual studio 2012 when Test and source code are in different solutions

I have source code and unit tests in two different solutions. The test project refers to the source code binaries. How can find the code coverage? If I select "Analyze code coverage" Menu under "Test" ...
2
votes
0answers
93 views

NUnit GUI throws System.AccessViolationException occasionally with our desktop application

(I opened this new question because this is about a desktop application, it's not ASP.NET or ASP.NET MVC and we don't use MVCContrib, this phenomena is not .NET version specific.) We use NUnit and Moq ...
2
votes
0answers
72 views

Nunit 2.6.2 Suite running twice instead of once

using System; using System.Collections; using NUnit.Framework; namespace Tests.MyTest { public class SpikeSuite { [Suite] public static IEnumerable Suite { get { ...
2
votes
0answers
100 views

Executing Nunit from jenkins

I execute near about 600 test cases from jenkins..But at certain point of time it throws an Error Unhandled exception Win32Exception,Error creating window handle.,System.Windows.Forms, at ...
2
votes
0answers
305 views

On OSX with MonoDevelop, Run NUnit Tests from Terminal / Command Line

Given that I create a C# NUnit Test Library called TryTesting in MonoDevelop(MD) (3.0.4.6) on OSX, how should I run these tests from the terminal/command-line (so that I can add them to an automated ...
2
votes
0answers
559 views

Multiple Browsers Tests using Webinator+Selenium, SpecFlow and NUnit

I'm developing an ASP.NET MVC 3 app with WebinatorSpecFlow+NUnit using the Selenium driver. I'm having a problem running parallel tests with Chrome (using chromedriver) and Internet Explorer. ...
2
votes
0answers
386 views

Log4Net in Resharper Unit Test Runner but not in NUnit Unit Runner

I'm using the latest 5.x ReSharper plugin with NUnit 2.5.10. When using Log4Net to log some events for testing purposes the results show up in the ReSharper test window, but do not show up when using ...
2
votes
0answers
287 views

Howto Test Databinding with Rhino Mocks and NUnit

I try to test my SW-Project VS2008, .NET 3.5 with "Rhino Mocks" and "NUnit". It uses the MVP Pattern and Databinding, so nothing unusual. But I get a problem (System.ArgumentException) when I try to ...
2
votes
0answers
477 views

NUNIT on X86 build throws System.BadImageFormatException on dll load

hi i am trying to use nunit-x86.exe to load a C.dll. This C Dll is same as my Net.Dll which calls the same interfaces (via another unmanaged Dlls). I have no problem running the .Net version of the ...
2
votes
0answers
160 views

PartCover producing empty xml when upgrading applications to .Net 4.0

We have been running PartCover on applications, and they were producing xml reports just fine. However, we upgraded all our applications from .Net 3.5 to .Net 4.0, and now, PartCover just produces an ...
2
votes
0answers
242 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 ...
2
votes
0answers
232 views

Using MVCContrib.TestHelpers with MsTest - is there any way to get nicer fail messages?

I'm just starting to use MVCContrib, and I'm really liking the syntactic sugar it adds to various test scenarious. For example, I just wrote this assertion: ...
1
vote
0answers
23 views

Nunit pass params to Test from nunit-console

I am using below to pass a single parameter to my Test. C:\Documents and Settings\>"C:\Program Files\NUnit 2.6.2\bin\nunit-console" "D:\Automation\ClassLibrary2\bin\Debug\ClassLibrary2.dll ...
1
vote
0answers
70 views

Running individual NUnit tests programmatically

I need to run individual C# NUnit tests programmatically. I found another post that was very helpful in showing me how to run an entire set of tests programmatically, but I need to be able to select ...
1
vote
0answers
32 views

NUnit not loading latest version of a Console Application

I am re-writing a console application and trying to use Unit Tests. I'm using NUnit, C#, .NET Framework 4 in Visual Studio 2010 on a Windows 7 PC. When I change code within the application my unit ...
1
vote
0answers
75 views

How to speed up integration tests using SQL Server Dev Edition

We have a suite of applications developed in C# and C++ and using SQL Server as the back end. Integration tests are developed with NUnit, and they take more than two minutes to run. To speed up ...
1
vote
0answers
134 views

Testing WCF Service with Current Context

I am working on unit testing WCF duplex service. Below is part of the code implementing the service interface and the callbackcontract interface. In the test ServiceHost.Open listens to the incoming ...
1
vote
0answers
108 views

Specflow tests in parallel : PNunit - I don't want to have to specify every test in config

I have successfully got pNunit (http://www.plasticscm.com/infocenter/technical-articles/pnunit.aspx) working to run my specflow tests in parallel. I really don't like the fact I have to specify that ...
1
vote
0answers
80 views

How to get test case description?

I have nunit test with some test cases. [TestCase(1,Description="first")] [TestCase(2, Description="second")] public void A(int a) { Assert.True(a==1); } How can I get description of each test ...
1
vote
0answers
48 views

AQTime can't profile code coverage on a unit test project based on .NET 4 and NUnit

I recently encounter a problem with AQtime when try to use it to profile code coverage on a unit test project which is based on .NET framework 4 and asserted by NUnit. Your comments and ideas are ...
1
vote
0answers
39 views

Best effort for injecting exceptions in C# and C++ combined environment?

I have a CLI project built using both C# and C++. I am using Visual Studio 2010 and it has a feature of building Testing APIs. Since there are APIs in my project which are meant to be platform ...
1
vote
0answers
43 views

Can NCover be used to select test cases for NUnit?

What are the best tools for test selection, preferably using NUnit and NCover. I'd like to be able to take a changelist, or list of changed files, and identify the test cases that are likely to give ...
1
vote
0answers
37 views

How to write an add-in to extend individual tests within NUnit testcases in ParameterizedMethodSuite

I am writing an addin that would extend NUnitTestMethod and override its RecordException() method to provide more information about a test, based on several custom attributes, which a test can be ...
1
vote
0answers
31 views

Using Resharpers testrunner in script?

We want to parallelize our unittests, however the nunit-console.exe cannot do this out of the box. And the NUnit.MultiCore project on codeplex.com seems to fail loading our custom log4net appenders - ...
1
vote
0answers
25 views

Error invoking COM from managed DLL via NUnit

I have a unit test case, written in C#, wherein I have to invoke a COM object. The test case works fine, when run stand alone. The same when tried via NUnit (v-2.5.9), it fails with following ...
1
vote
0answers
77 views

Tests writtin with Watin: Unable to cast COM object of type 'mshtml.HTMLDocumentClass' to interface type 'mshtml.DispHTMLDocument'

I am trying to fill out form elements on a form which is contained in an IFrame, contained in a parent frame. It is setup to act as a dialog (hit a button, IFRame pops up). My code is good (no ...
1
vote
0answers
34 views

NJasmine in Production

Is anyone using NJasmine in a production project right now? I'm loving the idea of a simpler TDD solution sort of like "developer level TDD". NJasmine looks awesome but also very young. Is anyone ...
1
vote
0answers
66 views

Windows.ApplicationModel.Package not available in NUnit-Test in .NET 4.5 (Windows 8 App)

I want to create an NUnit test in an Windows 8 app (under .NET 4.5) where I read the contents of an XML file in my application to run some code on this XML structure. In the NUnit test I want to do ...
1
vote
0answers
121 views

Debugging Unit Tests in MonoDevelop 3

I'm getting an exception: Null Ref > Stack Trace (System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke( {yadda yadda} ) when I try to debug unit tests in MonoDevelop. I'm running MonoDevelop ...
1
vote
0answers
81 views

NUnit projects: wrong “current directory” when binpathtype is “auto”

I have the following NUnit project file: <NUnitProject> <Settings activeconfig="Release" /> <Config name="Debug" binpathtype="Auto" /> <Config name="Release" ...
1
vote
0answers
136 views

how to exclude some nunit test categories when running specific test(s)

I set up some categories upon my tests such as 'longrunning', 'online', etc. - the mayor one anoying me is the 'online' category. With this I mark tests, which require internet connection to succeed, ...
1
vote
0answers
85 views

How to raise an event from a stub returned from a stubbed factory?

I'm trying to unit test a class that does multithreaded processing of video files. The class under test is ParallelTranscoder. ParallelTranscoder depends on a factory to create a new transcoder for ...
1
vote
0answers
336 views

This assembly was not built with any known testing framework Error when i try to run Nuint test inside VS 2010

I have a c-sharp project inside my visual studio 2010 express , so i did the following to be able to run the Nunit test:- 1. i download the "NUnit-2.6.1.msi". 2, i add a reference to the ...
1
vote
0answers
203 views

Selenium RC/Nunit/Firefox - Browser Crash on Click

I am testing a complex web application using a test framework comprised of C#, Nunit 2.5.10 and Selenium RC 2.24.1 (Switching to WebDriver is not an option unfortunately). We recently overhauled our ...

1 2 3 4 5 9