Tagged Questions
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 ...
0
votes
0answers
47 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, ...
0
votes
1answer
132 views
How to run test method by the testfixture parameter?
I have a test class and a class like below.
public class Foo
{
private IDbOjbect _db;
public Foo(string conn)
{
_db = new DbOjbect(conn);
}
internal Foo(IDbObject db)
...
0
votes
3answers
277 views
VS 2010 and Nunit testing framework setup
I am working on an Asp.net mvc3 project (.NET 4). And required to integrate a testing tool. I tried to setup up the Nunit testing framework in my solution but it seems that there is a problem setting ...
0
votes
0answers
144 views
How do i build my selenium scripts and create a report from Nunit?
Hello fellow selenium lovers,
I have my c# scripts up and running to test the application. Now i want to integrate and build for integration and create a report after test is ran successfully or not. ...
2
votes
1answer
323 views
NUnit. Passing parameters into teardown method
I'm using NUnit. I have my test method defined likeso:
[Test]
[TestCase("Fred", "Bloggs")]
[TestCase("Joe", "Smith")]
public void MyUnitTest(string firstName, string lastName)
{
...
}
After a ...
0
votes
2answers
136 views
Execute Multiple test DLLs with Nunit
I have multiple Nunit test DLL's like a_test.dll, b_test.dll, c_test.dll.
Whenever I need to execute the these test projects, I need to load them individually in the Nunit application and execute ...
2
votes
2answers
430 views
Initialize log4Net as early as possible with NUnit
I'm wondering what is the best way to initialize log4Net in a NUnit project. Of course I want to call the init code (ie. XmlConfigurator.Configure()) as soon as I can to get as many early log output ...
5
votes
4answers
356 views
Catching asserts in NUnit
I'd like to log some contextual information when tests fail (like capturing screenshots). Is there any extensibility point in NUnit framework where i can do it? Ideally it would be:
[TearDown]
...
2
votes
2answers
165 views
NUnit CollectionConstraints exceptions
I'm using NUnit 2.5.6.10205 in a .NET 3.5 C# app. I'm using NUnit's Collection Constraint to assert if an IEnumerable is sorted by a paramter.
It doesn't seem to be working for me, as I'm getting an ...
0
votes
1answer
41 views
Show only specific Tests or TestFixtures in NUNIT via a configuration file or another way
I have a bunch of NUNIT tests in several TestFixtures. Currently, I just display all the tests for everyone. Is there a way to hide some tests and/or test fixtures. I have various "customers" and ...
4
votes
1answer
314 views
How Can I get NUnit's ExpectedException attribute to detect an exception's base class?
Using NUnit 2.5.10, I am testing some code that references a library containing a base exception type. TIBCO.EMS.NamingException, from which other exception types derive, specifically ...
4
votes
2answers
746 views
NUnit extension
Hi All i have a question regarding NUnit Extension (2.5.10).
What i am trying to do is write some additional test info to the
database. For that i have created NUnit extension using Event
...
2
votes
1answer
255 views
What is difference between EqualTo() and EquivalentTo() in NUnit?
When I have a Dictionary<string, int> actual and then create a completely new Dictionary<string, int> expected with the same values as actual.
Calling Assert.That(actual, ...
17
votes
2answers
3k views
nunit not working in windows 7 at all
I am new to unit testing and this ism y first time trying NUnit.
My environment is windows 7 professional 64 bit, visual studio 2010 and i am working on a windows application in C#. I just wrote a ...
0
votes
1answer
262 views
How to verify that TestDriven.net uses NUnit 2.5.vNext?
I go to VS2010, tools, options, TestDriven.Net, Test Runners.
I observe NUnit 2.5 with version 2.5.0 thru 2.5.65535.65535 to be launched.
How do I configure TestDriven.Net to use NUnit 2.5.10, or ...
2
votes
1answer
180 views
Testing if a collection contains objects based on a particular property
I'm using NUnit 2.5.7. I want to test whether a collection of custom objects of a particular class contains certain objects, based on one of the class's properties.
e.g. a contrived example...
...
1
vote
2answers
591 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, ...
2
votes
1answer
266 views
Nunit addon not showing up in the addon list in nunit
I am having troubles creating an addon for nunit. I think I have done the necessary steps, but for some reason I do not see my created addon in the nunit tools addon list. I have created a new ...
8
votes
2answers
2k views
NUnit 2.5.8, lots of nunit-agent.exe
Each time I run a test in nunit I get another nunit-agent, which does not exit the test completes, or when the tests are reloaded in nunit or when I restart nunit.
This ever increasing list of ...
2
votes
1answer
388 views
nunit vs unit test framework built-in with visual studio
Anyone can give a comparison over those two frameworks?
2
votes
3answers
3k views
how to use nunit with visual studio
Visual studio has a built-in unit test framework. I am wondering if I can use nunit instead?
3
votes
2answers
770 views
Supply parameters to NUnit tests at run time
NUnit 2.5 adds support for parameterized tests with attributes like ValuesAttribute and ValueSourceAttribute so that one can write something like:
[Test]
public void MoneyTransfer(
[Values("USD", ...
14
votes
2answers
1k views
What happended to nunit extensions/rowtest?
In NUnit 2.4.7, nunit.framework.extensions.dll was included which made it possible to do RowTests.
When downloading the newest version (2.5.8) I can't find it. What happened to it?
4
votes
3answers
3k views
Data-driven testing in NUnit?
In MSTest you can do something like:
[TestMethod]
[DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV",
"testdata.csv", "testdata#csv", DataAccessMethod.Sequential)]
public void ...
1
vote
1answer
229 views
How to force Nunit to release handles on native DLLs?
I have code which require me to Pinvoke into a 3rd party native DLL. The issue is that when I use the Nunit test runner for those tests, the native dll is locked by the nunit processes (nunit.exe and ...
0
votes
1answer
329 views
How to get NUnit to work with Visual Studio 2008
Maybe I am just forgetting something, but I cannot seem to get NUnit to work in Visual Studio 2008 Standard Edition. I am trying to use NUnit 2.5.7 in a C# class library project. I am following the ...
1
vote
1answer
640 views
Nunit parameterised TestFixtures with parameters set at runtime?
I'm interested in being able to instantiate multiple testfixtures with constructor arguments passed to it at runtime by a static method or property returning an IEnumerable.
In Nunit 2.5 they ...
3
votes
1answer
402 views
Trace in NUnit works only while debugging from Visual Studio
I want to display trace info into Text Output tab in NUnit GUI (ver. 2.5.7, target runtime 4.0):
Trace.Listeners.Add(new ConsoleTraceListener());
Trace.WriteLine("Hello NUnit");
This works fine ...
1
vote
2answers
538 views
NUnit 2.5.7 Breakpoint still not hit (VS2010) even after attaching to the Agent
I am having a problem hitting the break point in debugging under VS2010 under
NUnit recent recommended release 2.5.7
I have tried various ways as recommended by responses on Stack Overflow:
Attach ...
0
votes
1answer
168 views
How to set up an NUnit project - Project Base and Application Base
Please forgive a very n00b question, but when using the GUI runner, Project->Edit...
What directories should Project Base and Application Base point to?
(Using the latest NUnit 2.5.7 and a VC# 2008 ...
0
votes
4answers
243 views
References/guides for nunit unit testing
Can anyone sugggest good references/guides for getting started with nunit and visual studio 2008. (Apart from the Nunit documentation itself!). I specifically want to set up a test project in vs 2008.
...
1
vote
1answer
54 views
Deploying an application that was unit tested with NUnit
I'm hopefully going to be deploying an application soon, and I find it strange that I would have to include nunit.framework.dll. After all, the user is not going to need to run unit tests! So the ...
8
votes
2answers
2k views
NUnit fail with System.ArgumentException: The net-4.0 framework is not available
Exception:
ProcessModel: Default DomainUsage: Single
Execution Runtime: net-4.0
Unhandled Exception:
System.ArgumentException: The net-4.0 framework is not available
Parameter name: framework
at ...
0
votes
2answers
306 views
Convert string to C# code
in the current NUnit version, I can parameterized TestFixture and instantiated it multiple times. E.g.:
[TestFixture("var1")]
[TestFixture("var2")]
[TestFixture("var3")]
public class ...
3
votes
3answers
2k views
Given -When-Then example with NUnit
Can anybody point me to some resources for Give-When-Then style of testing with NUnit?
4
votes
3answers
2k views
How to do exception handling with nunit and moq?
I am trying to use nunits new way of exception handling but I am finding it hard to find information on it and how to also use it with moq.
I have right now moq that throws a exception on a mocked ...
14
votes
10answers
4k views
NUnit - cleanup after test failure
We have some NUnit tests that access the database. When one of them fails it can leave database in inconsistent state - which is not an issue, since we rebuild database for every test run - but it can ...
2
votes
3answers
523 views
What is each tab in the NUnit Gui Runner supposed to be for?
There are six tabs in the NUnit Test runner:
Errors and Failures
Tests Not Run
Console.Out
Console.Error
Trace
Log
I know what Errors and Failures are for but the purpose of the remaining tabs is ...
2
votes
3answers
939 views
Using NUnit-2.5 RequiresSTAAttribute with TeamCity 4
Using TeamCity, I'm trying to get a (TestAutomationFX) test that requires an STA thread to run .
It works via a custom app.config that configures NUnit 2.4.x (8) (as referred to by Gishu, thanks, ...
