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
44 views

Custom TestRunner for nunit

Having following test flow: foreach(tc in testcases) foreach(temperature in temperatures) { SetTemperature(temperature); foreach(position in positions) { ...
1
vote
1answer
70 views

SynchronizationContext is not flowed when using await

We´re planning to use async/await in our MVVM view models, but hit a hard issue with unit testing this code. When using NUnit and a hand written mock for our messaging we´re losing the current ...
0
votes
0answers
181 views

Selenium Element Cannot Be Scrolled Into View: (34). Using NUnit, C#

Getting the error from the title when attempting to click on an <a> tag in a regression test script. I've researched the issue here: Selenium::WebDriver::Error::MoveTargetOutOfBoundsError: ...
5
votes
5answers
85 views

Assert.that vs Assert.True

What to prefer: Assert.That(obj.Foo, Is.EqualTo(true)) or Assert.True(obj.Foo) For me, both asserts are equivalent, so which one should be prefered?
1
vote
1answer
53 views

How can I mock ServiceStack IHttpRequest

I'm trying to get a unit test working for a service that is injecting items into the IHttpRequest.Items, using a request filter: this.RequestFilters.Add((req, res, dto) => { // simplified for ...
0
votes
2answers
37 views

How to ignore test method in phpunit

What is the attribute that should be placed next to the PHP test method in order to ignore the test using PHPUnit ? I know that for NUnit the attribute is : [Test] [Ignore] public void IgnoredTest() ...
1
vote
2answers
39 views

Running nUnit programattically with Filter

I'm trying use the nUnit API to launch tests programmatically, filtered by Fixture name. Here's my code (where "fixtureType" is a .Net System.Type) TestPackage testPackage = new ...
-1
votes
2answers
52 views

Is there an alternative to accomplish what Assert does and have the test fully execute when it fails without using a Try Catch?

I am writing tests for UI and am using assert statements to check if an element is present with string for the message when the assert fails. I would like the test to continue to check for other ...
1
vote
1answer
69 views

nunit TestContext throws NullReferenceException

I have the following code: [TestFixture] public class LexicalTests { [Test] public void LexicalTest1() { TestContext.CurrentContext.TestDirectory; } } CurrentContext throws ...
0
votes
1answer
34 views

Mocking property of type DateTimeOffset results in InvalidProgramException in a Windows Store Test library

I just started out with a Windows Store application and deciced to use test-driven development in my project. Since I've had some experience with NUnit previously that was my library of choice, and ...
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 ...
0
votes
1answer
51 views

How to unit/integration test classes that rely on NSNotificationCenter (in MonoTouch)?

I am writing an iOS application using MonoTouch that has a lot of information to be entered on quite a few different screens. Information A, B, and C might be entered on Screen 1, but I need to ...
1
vote
1answer
53 views

Unit testing an nHibernate repository - how to add to repository?

I've just been handed an unfinished asp.Net MVC 3 / nHibernate project to fix up and complete, and I'm in the process of trying to get the nUnit unit tests that are already there to pass. The ...
2
votes
1answer
68 views

nunit test working directory

I have the following code (sample1.evol - file attached to my unit test project): [Test] public void LexicalTest1() { var codePath = Path.GetFullPath(@"\EvolutionSamples\sample1.evol"); ...
0
votes
0answers
54 views

New to Mock: Will this test be accepted? [closed]

As i'm new to Rhino Mock, I don't know if this test will be accepted by the quality controller (An expert who checks code quality) or are there improvments to be done? i red tons of information and ...
1
vote
1answer
58 views

Mocking WebSecurity provider

I'm trying to create some simple unit tests for my controllers and I've come across an issue. I'm using the new membership provider in MVC 4 and getting the WebSecurity.CurrentUserId and storing that ...
0
votes
2answers
90 views

Unable to Click the a href value (<a href=“#” data-bind=“click: $root.lnkAdd”>New Grade</a>)

this is for my a html code <table cellpadding="0" cellspacing="0" style="table-layout: fixed;"> <tbody> <tr> <td style="line-height: 30px;"> No. of ...
2
votes
2answers
57 views

How to instantiate variable like WebDriverWait when test are given driver type as test case?

I am doing UI tests. At first I started with Firefox Browser driver only so I would declare the WebDriverWait variable under the class and would assign it under the [SetUp] method as shown in the code ...
0
votes
2answers
73 views

SpecFlow - HTML output from Visual Studio

I'm trying to generate a nice HTML output for my specflow features from Visual Studio. I have resharper installed and I can run my feature tests but I would like to get an html output of the final ...
0
votes
2answers
75 views

Rhino mocks for accessing database

Please excuse me if this question has been asked before. I'm in a stage that searching for example is returning too much results that confusing me. I'm new to Rhino mocks, i know there are tons of ...
0
votes
2answers
60 views

How can I run ignored tests with TeamCity's NUnit runner?

I want to run all the ignored tests in my solution in a different build configuration in TeamCity. I didn't see any explicit why to do it in the build step configuration page. Can it be done?
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 ...
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 ...
0
votes
1answer
46 views

How to reference a file inside my Test project to load w/o hard coded the path?

In my nunit test project I have a layout like: /Fixters/someFile.txt /Services/SomeService.cs someFile.txt is a file that I need to read as it contains text that I use for my unit tests. How can I ...
1
vote
1answer
34 views

Does c# have a rspec like testing framework that makes grouping like tests together?

I want a testing framework that makes it easier to group like tests together. I like how rpsec makes it easier to group similiar tests together, can you do this with any .net based framework? I'm ...
0
votes
1answer
58 views

Jenkins NUnit test reports are not rendering in emails

I have installed the following plugins on my Jenkins: NUnit xUnit Email-ext Then I pointed the paths to my NUnit reports *.xml's in plugin settings (I tried both Nunit and xUnit plugins). After ...
1
vote
1answer
152 views

Reading incorrect values from Excel using OleDbDataReader in C#.NET

I'm running some test cases written in C#.NET using NUnit (this is on Visual Studio 2010). The method I'm using reads user and address data from an Excel .xls (2003) file that was provided to me by ...
2
votes
1answer
104 views

Standard way to attach unit tests to a C# project

I've written couple of unit tests in seperate project. While developing, I loaded the dll into NUnit.exe each time to check the results. Given that I am done with writing unit tests, how to organize ...
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
1answer
154 views

Resharper Test Runner: Could not load file or assembly 'System.Windows'

I have an issue with VS2012 and Resharper 7.1.2 at the moment to run unit tests (Nunit). The complete error message is here: Unit Test Runner failed to run tests: ...
-5
votes
1answer
53 views

Unit test on functions that don't return a value c# [closed]

Can a function containing multiple if else statements and loops can be tested using unit testing? for e.g. public void assignValue(Position p4) { for (int i = 0; i < ...
0
votes
4answers
140 views

Design issue: static class only initializes once, breaks unit testing

I have a static Configuration class responsible for data settings for my entire system. It loads certain values from the registry in its constructor, and all of its methods are based on these values. ...
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 ...
1
vote
4answers
171 views

C# Unit testing class with a private constructor?

Ok so i just got an assignment where i have to perform unit testing on a class with a private constructor. Now how am i suppose to do unit testing without initializing a class when all the methods ...
0
votes
2answers
143 views

How do I run my NUnit test cases using Selenium to run against different environments?

I have written NUnit test cases using Selenium to test a web application. And I would like to run the same test cases against different environments (e.g. QA, Staging, & Production) What's the ...
1
vote
3answers
147 views

Nunit async test exception assertion

I have a controller UserController with this action // GET /blah public Task<User> Get(string domainUserName) { if (string.IsNullOrEmpty(domainUserName)) { throw new ...
0
votes
1answer
59 views

How to do the testing of viewmodels

Can somebody explain me how to do the nUnit testing for WPF viewmodel. I am new to this. I created a nUnit project however i am not sure how to run this. Is this through the nUnit exe or directly ...
0
votes
1answer
43 views

Run a specified NUnit test as a 32-bit process in a 64-bit environment

I have a component that uses OLEDB to import data from an Excel file. Due to business risk and time constraints, my executable shell is compiled as x86 (32-bit) to avoid the 64-bit OLEDB problem and ...
0
votes
1answer
45 views

NUnit Test Cases Input Issue

My code takes input from file. If i have to write NUnit test case for it, do i have to change my code and take input from test case instead of file or is it possible that i don't have to change my ...
1
vote
1answer
88 views

Implementing TestSuite in NUnit

I keep getting : The type or namespace name 'TestSuite' could not be found (are you missing a using directive or an assembly reference?) I use visual studio 2010 and I have installed the latest ...
0
votes
1answer
48 views

Test data source in MBUnit like in NUnit

How can I annotate my MBUnit test with a test data source attribute like in NUnit: Pseudocode like its in NUnit: [TestCaseSource("GetData")] public void Test(int value) { } private static ...
1
vote
1answer
32 views

NUnit my extension doesn't load

I wrote an extension for NUnit 2.6.2. I install a listener like namespace NUnit.EventExtension { [NUnitAddin(Type = ExtensionType.Core)] public class NUnitExtension : IAddin { public bool ...
0
votes
2answers
82 views

Creating an overloaded method in c#

I am trying to create classes that hold contact information and address information for customers. I am currently trying to overload methods in hopes of condensing my code and making it easier to ...
0
votes
1answer
84 views

Setup a complicated row test with nunit and TestCaseSource and TestCaseData

For every expect return value like 2 or 4 I want to pass this value as parameter for the unit test method. But I get an exception that the parameters are not correct. When I remove the countExpected ...
0
votes
1answer
170 views

Mocking DBSet, EF Model First

As said in the title, I follow Model First method. So my Model classes are Automatically generated. If I want mock the DBContext derived MyModelContainer which contain DBSets of entity classes. Read ...
1
vote
1answer
133 views

Unit tests for ServiceStack services

I am trying to write simple unit test for ServiceStack service, I am going through tests they've online and few threads here. This is the main thread that has most details I am trying to accomplish - ...
1
vote
2answers
153 views

How can I mock a repository and unit of work pattern in Entity Framework?

I am new in Moq and Unit Testing. I want to test my Repository and Unit of Work pattern with entity framework 5. But I don't understand where and how can I start. My Repository Interface : public ...
3
votes
2answers
197 views

How to seed database data for integration testing in C#?

I've been writing some integration tests recently against ASP.Net MVC controller actions and have been frustrated by the difficulty in setting up the test data that needs to be present in order to run ...
0
votes
0answers
58 views

NUnit and AppDomain's UnhandledExceptionEventHandler

I'm having some issues writing a unit test in NUnit that checks that a custom exception (ProcessException) is thrown by a background worker in its RunWorkerCompleted event - for the sake of argument ...
0
votes
0answers
45 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 2 3 4 5 52