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.
0
votes
1answer
319 views
NUnit System.BadImageFormatException When Running Unit Tests
First let me preface this post by saying that I have seen various discussions on this topic within the TeamCity forums and here on SO, yet nothing seems to work for me.
I have a C#.Net solution and ...
9
votes
1answer
285 views
How does nunit successfully wait for async void methods to complete?
This may be a bit of a broad question, but I'll try anyway.
So when using async/await in C#, the general rule is to avoid async void as that's pretty much a fire and forget, rather a Task should be ...
2
votes
0answers
56 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 : ...
0
votes
3answers
155 views
Should I use nunit's Assert.Throws method or Expected Exception attribute?
I noticed these seemed to be the two main ways of testing for exceptions.
Assert.Throws(()=>MethodThatThrows());
[ExpectedException(typeof(Exception))]
I was wondering which of these would be best? ...
1
vote
1answer
112 views
Unit Test for virtual Keyboard
One of my projects I am developing is a Keyboard hook that traps some of the higher numbered function buttons (f13-f20). The tablet this will work on has buttons on it that are mapped to those higher ...
0
votes
0answers
114 views
Find application data directory of vb.net application under test
I am writing NUnit tests for an application that stores reference data XMLs in
My.Computer.FileSystem.SpecialDirectories.AllUsersApplicationData
The problem is that when the NUnit executable runs ...
0
votes
1answer
283 views
Unable to load DLL 'SQLite.Interop.dll' with nHibernate in NUnit
I've installed FluentNHibernate and System.Data.SQLite.MSIL with Nuget.
I wrote some unit tests and tried to execute them. But my test setup is failing miserably:
...
0
votes
1answer
194 views
writing unit test cases
In my project we are dealing with database (SQL server 2008). Reading, inserting, deleting and updating data. Some of the SQL script is created by xml automation tool and some are manually written by ...
1
vote
1answer
106 views
Colon in AppDomain causing problems with log4net.Util.PatternString
I'm using ReSharper 7.1.1, NUnit 2.6.0 and log4net 1.2.10.
In my log4net configuration I have a RollingFileAppender:
<appender name="file" type="log4net.Appender.RollingFileAppender">
...
1
vote
1answer
113 views
Resharper ignore unit tests for usage analysis
One of the most useful code analysis tools of Resharper is to mark symbols as not used if no usage if found in the solution.
Unfortunately any symbol that is covered by unit tests is regarded as ...
0
votes
0answers
50 views
Nunit 6.1 and NBehave 0.6.1
i'm get the followin error when trying to add assembly to nunit test runner
System.IO.FileLoadException...
Server stack trace:
at System.ModuleHandle.ResolveType(Int32 typeToken, ...
3
votes
2answers
131 views
c# TDD first time in ServiceBase
I'm trying to implement Test-driven development for the first time.
My project is a c# in dotnet 3.5.
I'm have read the book Professional Test Driven Development in c# and now i want to test my ...
0
votes
1answer
82 views
Nunit --Data insert test issue
I am new to Nunit testing.
I am trying to write test method for a method which inserts data in Database.
My code is like:
using System;
using System.Collections.Generic;
using System.Linq;
using ...
1
vote
0answers
115 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
1answer
40 views
Running multiple fixtures in parallel in R# 7.0
Any way of running multiple text fixtures within the same assembly in parallel with R# 7.0?
I have an assembly with a lot of DB-bound tests that runs slower than all other test assemblies, but I'm ...
0
votes
0answers
46 views
sitecore unit test MSTest version of codeFlood application
We use MSTest for unit testing through out our organization. We would like to go with option of Load Runner using HTTPContext object.
However, codeFlood Load Runner is based on NUnit. Could someone ...
0
votes
0answers
50 views
Data fixtures for Unit Testing in .NET
In ruby on rails one could define data fixtures in yaml files and then load them to execute certain tests, using objects created from those fixtures (using activerecord as the proxy).
I was wondering ...
4
votes
2answers
77 views
Should I write tests before they will compile? [closed]
I've been trying to follow a loose TDD workflow for one of my open source projects. It's an API for other programmers to use.
As such, one key aspect as well as making the API "work" is also ...
0
votes
1answer
26 views
SchemaExport and turning off referential integrity constraint
When I am running tests on my Respiratory code the tables are dropped and created and fresh data is added for tests using
new SchemaExport(_configuration).Execute(false, true, false);
However it is ...
0
votes
0answers
78 views
Issues implementing WCF duplex channel service using NUnit and Moq
I have WCF service with an interface Itest(server) that needs to be moq'd using service host based class ServiceHost. Both server and clients I have control over and use duplex binding. The callback ...
1
vote
1answer
116 views
Cannot run Telerik tests using Nunit on bamboo- Exception when starting the browser
This message is regarding the issues I am facing at the moment. Below given steps describe the process on what I am working on and where I got stuck.
I created functional test cases in Telerik ...
1
vote
0answers
85 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 ...
0
votes
1answer
149 views
Sql Lite Error while running Fixtures : Unable to find the requested .Net Framework Data Provider. It may not be installed
Can anybody please help to resolve this issue..
I tried saveral things after googling but yet no luck...
This error occurs while running fixtures in my project.
NHibernate.HibernateException : ...
0
votes
1answer
91 views
NUnit Could not load file or assembly 'LogAnalyzer
Hi I just started to read The Art of Unit Testing: With Examples in .Net in order to understand what unit testing is and how to properly code unit tests.
First I tought that in the book the author is ...
0
votes
1answer
110 views
Writing the test result to the Excel -nunit
Is it possible to write the test result to a excel like pass or fail using nunit and C# . If any example can be provided it would be great .
0
votes
1answer
69 views
NQunit.NUnit getting started guide
does anybody know of a good tutorial for getting started with NQUnit.NUnit.
I've installed it to my test project via nuget and am unsure what the blank.js and async.js files are all about, should I ...
0
votes
0answers
78 views
nunit large project integration tests, out of memory exception
I'm using nunit for running integration tests (which each test interacts with the database via nhibernate) for a large project with 600+ tests. problem is after 10-15 minutes minutes nunit throws out ...
0
votes
2answers
55 views
Checking entry in the log file using RegEx in unit testing
I have log4net log file that logs entries for certain errors. I have to check after i.e. 30 seconds the first error it logged in the log file. I believe Reg Ex is what can do it.
So far I have:
...
0
votes
0answers
59 views
add a name to nunit test dynamically and write the result to excel
Hi I would like to add a name to unit test dynamically and write the result to Excel as pass/fail.
My Nunit code as follows
[TestCaseSource("GetExampleData")]
[Test]
public void ...
2
votes
1answer
80 views
Generic class and IEquatable problems
I want a generic class to implement the IEquatable<T> interface. The class has data items of type T. For the generic class to be equatable the data items need to be that as well.
Here is my ...
9
votes
4answers
4k views
Visual Studio 2012 MSTest vs NUnit pros and cons
We have to decide which technology to use for our unit testing. Currently we use Visual Studio 2010 and not happy with MSTest that came with that. It is buggy, poor in deployment (E.g the test setting ...
4
votes
1answer
109 views
In which secret, magical directory does a VS unit test execute?
So, my first VS(2012)/NUnit unit test experience...
The unit test project is referencing assembly A (the code which needs to be tested), which requires assembly B. So, I have also referenced ...
0
votes
0answers
57 views
C# why did trace stop working
I have a Visual Studio solution with 2 projects. One is for the program, the other is for NUnit. I run the NUnit tests and tracing works. I can see it in the text output portion of the nunit runner. I ...
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 ...
0
votes
1answer
100 views
How do you disable PostSharp when running unit tests?
I want my nunit tests not to apply any of my PostSharp aspects so I can test my methods in isolation. Can this be done somehow in the Test Fixture Setup, or can it only be done on a per project level?
...
0
votes
0answers
35 views
NUnit assertions in asynchronous callbacks not registering?
If I do this the assertions throw exceptions but do not seem to affect the outcome of tests. For example if an assertion inside a callback fails, it throws an exception but the test will still ...
3
votes
1answer
76 views
Debugging in VS2012 with NUnit without throwing exceptions?
I have NUnit running into VS2012 with the NUnit Test Adapter and I can do Run All tests fine, but if I want to Debug All Tests every time I hit an Assert it throws an exception. How do I make it not ...
1
vote
1answer
65 views
How do you setup Mvvmcross SQLite pluging to be tested?
I'm quite new to mvvmcross and I'm working on an app that uses SQLite plugin as "backend" for the model. (WinRT and WP/8 only at the moment but porting it to Droid and IOS when firts two platforms ...
0
votes
1answer
34 views
Nunit System.Xml.XmlUrlResolver.GetEntity System.Xml.XmlException: Object type is not supported
I am getting this error when testing C# dll using Nunit 2.6.2.
System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
System.Xml.XmlException : Object type is not ...
0
votes
2answers
47 views
Can I group by full class name my tests on NUnit or MSTest using command line?
The most of my tests uses database integration with NDbUnit and the isolation mode I use is grouping by them full class name.
Now, I need this config runs on command line 'cause I'll use Jenkins CI.
...
1
vote
3answers
64 views
How can I prevent my NUnit tests from running in parallel sometimes
I'm using the NUnit test runner included in Monodevelop. I have 2 tests which must interact with static resources so I need them to run serially rather than parallel. I've tried using something like
...
1
vote
3answers
148 views
NUnit: Write unit test for code needs work with physical file
I've recently started writing unit tests for my codes using NUnit framework.
I am familiar with basic concepts of NUnit and writing simple tests.
Actually I don't know how to test codes that work ...
0
votes
1answer
380 views
Unit Testing ASP.NET MVC4 Controller with Kendo
I am trying to unit test an ASP.NET MVC 4 controller that is returning Kendo.UI.Mvc DataSource result wrapped as Json. The problem is that I cannot get to the returned the actual data .. it is always ...
1
vote
2answers
98 views
NUnit how to test parameters passed to a object contructor
I have methods which looks like this:
public A Method(int a, int b){
return new A().AMethod(a, b);
}
Now I'm testing it via test that object I get has the expected values after been operated ...
3
votes
1answer
245 views
How do i mock a Interface with Moq or NInject Mocking Kernel
I just waded through questions and blogs on the subject of mocking and Dependency Injection. Come to a conclusion i just need to mock the interface that is consumed by client. I am looking forward to ...
0
votes
3answers
91 views
Testing a DLL with NUnIt-How to know which config file is being used
I have a project having more than one .exe and also having more than one .config files.The project is in .Net Framework and it's windows application. I have built this project for Nunit Testing.I have ...
1
vote
1answer
86 views
using an NUnit category attribute to run certain tests in a dll?
Could anyone tell me how to programmatically decide which tests to run in NUnit? i.e
CoreExtensions.Host.InitializeService();
TestPackage testPackage = new TestPackage(pathToSomeDLL);
// filter by ...
1
vote
2answers
109 views
Unit Testing Object Creation of Class with Hidden State (Query Object Pattern)
I have the following code:
public class Foo
{
public string Name { get; set; }
}
//query object pattern
public class FooQuery
{
private string _startsWith;
public FooQuery ...
1
vote
1answer
42 views
Running mock more than once
I was suggested following Mocking to test some method. I have to run this mock multiple times like 5. I am wondering if it can be done in lambda expression or I have to loop it through.
Thanks
...
0
votes
2answers
69 views
Having Issues Trying To Implement Mock On Interfaces in Nunit
I have been spending quite some time trying to figure out this problem, but so far no luck. I am trying to implement Mock Test on the following
I have service with two interfaces. One is to receive ...


