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

0
votes
0answers
12 views

System.BadImageFormatException:Could not load file or assembly … incorrect format when trying to install service with installutil.exe

I know i am going to ask duplicate question but my scenario is totally different i think so because when i go to do unit testing with nunit tool of my program then in NUnit this error happen ...
1
vote
0answers
23 views

Why does a link is clicked when test is run in Selenium IDE, but it is not clicked when the test is run by nunit.exe?

I have the following Selenium test: open /dealerproducts.preprod/MainPage.aspx type id=ucTopBar_ASPxRoundPanel2_ucLogin_cbLogin_pnl_txtLoginEmail_I tester@gmail.com type ...
0
votes
1answer
14 views

badimageformatexception - Which assembly is problematic

I'm fighting with a BadImageFormatException: System.BadImageFormatException : Could not load file or assembly 'Bla.Bla.Bla, Version=0.0.0.18329, Culture=neutral, PublicKeyToken=null' or one of its ...
0
votes
0answers
11 views

NUnit ASP.NET Forms add content to Page

In a HttpModule want to add Html in different places of a WebForms Page requested. public override void OnPreRequestHandlerExecute(HttpContextBase context) { var page = ...
0
votes
1answer
15 views

Running NUnit Tests in TFS 2010, Tests Run but Get Error Publishing Results

I have used the Community TFS Build Extensions to add NUnit test support to my build template in TFS 2010. I have created my build definition and my project is building fine. It also appears that my ...
0
votes
2answers
44 views

Assert Javascript value in C# with Selenium

I'm writing a test for a webapp. At one point in the application the webpage is completed using Javascript. For testing I'm using Visual Studio 2012 with NUnit and Selenium. I want to check if the box ...
1
vote
3answers
46 views

Unit Testing Methods With File IO

I'm trying to get into the habit of writing unit tests, I've written a few before but they've usually been quite basic...I'd like to start making a move to TDD as i want to improve the quality of my ...
0
votes
1answer
56 views

An error appears if Selenium Webdriver test that is run by TeamCity clicks on Browse button for uploading a file

I run Selenium Webdriver tests by TeamCity on local server (Windows Server 2008). Also I use test automation framework for working with browser's dialog when I try to upload or download file. When I ...
2
votes
1answer
47 views

activate logging output in xamarin studio

I write UnitTests (no integration-tests with device and stuff) for monotouch and monodroid in xamarin studio with NUnit. That works great, besides the problem that I don't see any log output created ...
0
votes
0answers
17 views

In NUnit, how can I indicate that a 'DataPoint' is applicable to just one Theory?

In NUnit, is there any way to indicate that a Datapoint(s)Attribute should be applied only to one theory only, if there is more than one theory in the same TestFixture class? Reason I ask is that I ...
3
votes
1answer
31 views

How to ensure that the filesystem and database are not accessed during unit tests in NUnit?

I'm looking for a way to cause unit tests to fail if they access the filesystem or database using NUnit and C#. I would preferably like to be able to set something up in a unit testing base class to ...
0
votes
0answers
11 views

Visual studio integrated test runner for NUnit .Net 3.5

Does anybody know a good VS integrated tool to run Nunit tests for .Net 3.5? I can't have software as ReSharper or CodeRush since that's not license free.
0
votes
0answers
45 views

Console.Write and Console.WriteLine are behaving similar for MS Test Output

As per the official documentation Console.Write should not be writing new line char to output where as Console.WriteLine should. But for some reason, I'm seeing a different behavior for Console.Write ...
0
votes
2answers
52 views

Moq NHiberNate ISession.Get doesn't call mock session object

I am new to NHibernate and even newer to MOQ (or other similar frameworks). After searching online day and night (google + stackoverflow + others), I am turning here for help. The scenario is ...
1
vote
1answer
51 views

Is it wrong to use Assert.That (rather than Assume.That) with a [Theory]?

interface IPoint { int X { get; } int Y { get; } } static bool CoincidesWith(this IPoint self, IPoint other); // implementation unknown I want to write a NUnit test that verifies my ...
3
votes
2answers
26 views

Exception when I try to create Database on my test, using TeamCity for CI

In one of my test I need to create a SQL Express database and then populate it. It's run fine on my machine but when TeamCity tries to run the very same test it throws the following exception: ...
0
votes
0answers
18 views

NUnit GUI Runner for Windows Phone 8 class library - problems with some System libraries

I'm working on library projects for Windows Phone 8, and using NUnit for unit-testing. My IDE is Visual Studio 2012 Express edition for WP8. It'd been so far so good until a day when it happened to ...
2
votes
2answers
53 views

Returning a collection via a repository using Moq

I'm relatively new to unit testing and ASP.NET MVC as a whole and I'm trying to write my first unit test against a simple controller action and a repository (as seen below) using Moq. ...
1
vote
2answers
56 views

unit testing a class with event and delegate

I am new to testing please help. I have the following class public delegate void OnInvalidEntryMethod(ITnEntry entry, string message); public class EntryValidator { public event ...
0
votes
0answers
32 views

NUnit bug: The store generated pattern 'Computed' is not supported for properties that are not of type 'timestamp' or 'rowversion'

I created a test case in NUnit using VS2010. Testing simple case get experiment description by ID. It works fine when I work with normal code but gives the following error when I do unit test with ...
0
votes
1answer
12 views

NUnit Assertion that enum value contains a flag

While writing some tests for our .Net (C#) libraries with NUnit, I came to following problem: I have an enum which has the Flags attribute, e.g. [Flags] public enum Powers : int { Undefined = 0, ...
0
votes
1answer
33 views

Strange constructor behaviour in nunit parameterized tests

I have a nunit 2.5.10 parameterized test: [TestFixture(parameter1)] [TestFixture(parameter2)] public class MyTest : BaseTest { var param=""; public MyTest(string arg) { ...
4
votes
1answer
93 views

Unit testing with Roslyn.Services.Workspace results in a SecurityException while working at x86 target

I'm working on set of constants for my project, and I'd like to use roslyn to verify some of them in source code level. To achieve this, I'm loading entire solution using following snippet into ...
0
votes
1answer
39 views

Unit Testing Monotouch under Visual Studio

I have a Monotouch iOS application that I'm writing in Visual Studio using Xamarin's new Visual-Studio plug-in. I would like a way to execute my Unit tests from within Visual Studio (e.g. with the ...
2
votes
1answer
42 views

About NUnit TestFixtureTeardown attribute

If I have some code like this - public class BaseClass { [TestFixtureTeardown] public void SomeMethod() { ... } } public class DerivedClass : BaseClass { [TestFixtureTeardown] public ...
0
votes
0answers
11 views

Is there any way to access the current test's parameters (apart from the parameters themselves)?

If I write a parameterized NUnit test, using something like [TestCaseSource] or [ValueSource], NUnit will pass the parameters directly to my test method. But is there any other way to access those ...
0
votes
1answer
54 views

Can't make unit testing works in xamarin studio

I'm trying to follow this tutorials: www.codeproject.com/Articles/34161/Setup-a-Test-Project-with-NUnit-and-MonoDevelop but when i click "Run tests", they are gray and no results showed: ...
0
votes
1answer
22 views

How to use multiple TestCaseSource attributes for an N-Unit Test

How do you use multiple TestCaseSource attributes to supply test data to a test in N-Unit 2.62? I'm currently doing the following: [Test, Combinatorial, TestCaseSource(typeof(FooFactory), "GetFoo"), ...
4
votes
0answers
89 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] ...
0
votes
0answers
17 views

Nant html report generated is wrong?

How can below html report be explained? I am using Nant. Code is given below, [TestFixture] public class SimpleCSharpTest { protected int fValue1; protected int fValue2; ...
0
votes
1answer
18 views

error while building project using Nant

I have file pro.build code is shown below. <?xml version="1.0" ?> <project name="NAnt.NUnit2ReportTasks" default="build" basedir="."> <sysinfo /> <target ...
1
vote
2answers
51 views

Nunit test setup method with argument

Can we have a test set up method with arguments? I need a different set up for every test in a fixture. Do we have something (or similar way) as the hypothetical idea : [SetUp] [Argument("value-1")] ...
0
votes
0answers
24 views

Method test failed in TFS (via NUnit)

I running unit tests (NUnit) on workstation and tests passed. But I running to build in TFS and getting errors: System.Exception : Unable to locate ...
0
votes
0answers
77 views

GhostDriver doesn't quit after Selenium test run

In my first very simple test of Selenium with GhostDriver (PhantomJS) the tests pass, but PhantomJS.exe doesn't exit. I'm running on Windows 7, PhantomJS 1.9.0, Selenium WebDriver API 2.32.1 and NUnit ...
0
votes
2answers
33 views

How does a unit test know when to pass or fail?

I'm reading Dependency Injection for .NET and following along with some of the samples in the book and it lead me to a question about unit testing. How does a unit test know when to pass or fail? Not ...
0
votes
2answers
40 views

Assert that a test failure is a success

In a nunit test, can we an assert that if the test fails at a certain circumstance then it is a pass (i.e. it is expected to try and fail). But it should pass under all other circumstances. Thing is ...
2
votes
1answer
55 views

Test doesn't execute method unless I assert on the method's returned value

Ok, I have a strange problem. I'm using NUnit and Moq in a C# Test project. I think you can ignore the Mock-objects, since the real problem lies in UserManager.AddUser() not being properly executed. ...
0
votes
3answers
39 views

Unit testing. About independent tests

Before downvote my question please listen :) I use unit test. And I know they must be independently from each other. Though how to test repository for book. First book must be created, then updated ...
4
votes
3answers
112 views

Resharper runs UnitTest from different location

When I run unit tests with Visual Studio it works fine, because it runs from project directory where all assemblies are. But when I run it with resharper it goes with error on var services = ...
2
votes
0answers
21 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
2answers
65 views

Nunit-C#: run specific Tests through coding

I am using Selenium with C# fro Automation, and i want to invoke the Nunit through coding, i did it using below code CoreExtensions.Host.InitializeService(); TestPackage testPackage = new ...
1
vote
0answers
25 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
2answers
27 views

How to display NUnit errors nicely in TFS2010 via MSBuild

I'm trying to integrate NUnit into a TFS build workflow. I found the MSBuild.Community.Tasks NUnit integration, which is great. I can run NUnit on my test DLLs as part of the TFS build. So far so ...
0
votes
1answer
32 views

Add assertions to List

I have a list of assertions that will test my case. The tests will pass but I want to add them all to a list so that I can send that list to an xml file. I did this with an xml file but any help on ...
0
votes
1answer
34 views

Run Nunit assertions from another class

I have two classes that I made to build up an order. Basically the class to create the order works fine but I want to use assertions to validate the information that comes back. The first class builds ...
1
vote
1answer
36 views

NUnit Sequential Attribute with arrays in Values

How I can pass string[][] arrays to ValuesAttribute? I have: public string[][] Array1 = new[] {new[] {"test1", "test2"}}; //... [Test, Sequential] public void SomeTest( [Values("val1", "val2", ...
3
votes
1answer
36 views

Are tests in one class guaranteed to be not executed concurrently?

I am almost sure that they are. But I need to confirm that. class Foo { Bar fieled; [Test] public void bar() { field.DoSomething(); } [Test] public void baz() { ...
4
votes
1answer
140 views

AutoMapper Profiles and Unit Testing

I'm rolling over my AutoMappers from using one large AutoMapperConfiguration class to using actual profiles. Global now looks like so (forgive the Open/Close violation for now) Mapper.Initialize(x ...
0
votes
1answer
53 views

Selenium, FluentAutomation & NUnit - How do I switch browsers for each TestCase?

Currently, openGoogle() does get called for each test case with the correct parameters. The problem is that setBrowser does not appear to be working properly. It does set the first time and ...
0
votes
0answers
42 views

Pass data to nunit testcase

How pass data from the testrunner to the unittest? For example an output path or interface configuration of the host machine?.

1 2 3 4 5 52