1
vote
3answers
129 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 …
0
votes
3answers
61 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();
…
1
vote
1answer
15 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 …
1
vote
5answers
53 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
3answers
24 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()
…
0
votes
1answer
22 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?
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
…
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
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
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.
1
vote
3answers
45 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 …
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 …
1
vote
1answer
15 views
Dettaching Nunit from VS debug mode takes too long
I am using VS2008 and Nunit. My application uses Spring.NET Framework for dependency injection. I attached Nunit to VS to debug. Loading Nunit takes time and even worse after the test fails/success, I …
0
votes
0answers
14 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 …
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 …
