Tagged Questions

0
votes
3answers
59 views

NUnit Unit Test has “ExpectedException” but still failing on exception

I have a unit test that is failing because a System.ArgumentException is being thrown, even though I am expecting it and it's deliberate behaviour - what have I missed? [Test] …
1
vote
3answers
135 views

my class has 30 properties, unit testing is a pain no?

My class has like 30-40 properties, and I really want to unit test. But I have to create a moq instance (many of them, with different combinations etc). Is there an easy way? This is real work! My …
1
vote
1answer
17 views

Rhino mocks naming expectations

My object under test has two dependency objects of the same type. Sometimes when a test has a failed expectation, it's not clear which dependency object set that expectation. Is there some way to give …
0
votes
3answers
64 views

Why would I unit test this controller’s action?

I have a ArticleController that displays a list of articles according to a category. public ActionResult List(string categoryname) { MyStronglyTypedViewData vd = new MyStronglyTypedViewData(); …
0
votes
3answers
25 views

StructureMap is not reset between NUnit tests

I'm testing some code that uses StructureMap for Inversion of Control and problems have come up when I use different concrete classes for the same interface. For example: [Test] public void Test1() …
1
vote
5answers
55 views

how would I unit test this nhibernate query?

public Category GetByName(string name) { Category category = Session.CreateCriteria(typeof (Category)) .Add(Expression.Eq("Name", name)) …
0
votes
1answer
23 views

How can I detect if an NUnit test is running from within TeamCity?

I need to run some code only if I'm running from within the TeamCity test launcher. What's the easiest way to detect this?
1
vote
1answer
35 views

Unit testing a Winforms event driven architecture

What approach should I take (if it's even possible) to unit test a standard event driven Winforms app where display and logic are mixed together.
0
votes
2answers
28 views

Environment.CurrentDirectory with NUnit GUI differs to the TeamCity value, how can I sync them?

As above really, I have some integration tests that use files from a relative file path. To help picture it here is the file structure: /Dependencies /VideoTests/bin/release/video.dll …
0
votes
1answer
30 views

KeyNotFoundException, but not when debugging.

I've been building an extensions library, and I've utilised a great extension method found at http://www.extensionmethod.net for inclusion. In my unit test (using NUnit 1.5.2), I've come across an …
0
votes
0answers
15 views

msbuild: TestRunConfig for NUnit

We are migrating from mstest to NUnit. The first step was to migrate all our UnitTests projects which was accomplished using the following msbuild task: <Target Name="RunTests"> <!-- The …
2
votes
1answer
61 views

Unit Testing Sqlite Membership Provider in MVC app

I've created an MVC application and I've set up Roger Martin's sqlite Providers in place of the default Providers. I'm curious about how I would go about unit testing these. Below is a stripped …
1
vote
3answers
47 views

Running NUnit Tests In a C# Console App

I need to run NUnit tests programmatically in a console app. Using NUnit's nunit-console.exe is not an option. My current code is: var testRunner = new SimpleTestRunner(); var package = new …
1
vote
1answer
19 views

How do I get ReSharper to ignore certain categories when running all tests?

I've got about 650 NUnit tests in my current solution in VS2008, but 40 of these are categorized either as "LongRunning" or "Integration". I do not want these to run every time I've done a change and …
1
vote
2answers
30 views

How to pass the assembly name as a command-line argument when debugging

I have an NUnit test assembly (a .NET DLL). When I click Run in Visual Studio I want it to launch NUnit and run the tests in this assembly. I can do all of that. Instead of specifying the full …

1 2 3 4 5 33 next
15 30 50 per page