2
votes
3answers
33 views
How can I unit test views and authorization attributes of my asp.net mvc application in nUnit?
I'm at a point where I'd like to start writing unit tests for my MVC application. I've already figured out how to unit test the controller and I can unit test my underlying busine …
1
vote
6answers
89 views
Unit Testing a class with an internal constructor
I have a class called "Session" which exposes several public methods. I'd like to Unit Test these, however in production I need to control instantiation of "Session" objects, so de …
0
votes
0answers
12 views
Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?)
I am using some of the testing libraries from Sharp Architecture which make use of NUnit 2.5.0 while the rest of my project uses NUnit 2.5.1 so I placed an assembly redirect in my …
0
votes
2answers
31 views
Can TeamCity’s .NET NUnitaddin process csproj files?
To cut to the chase, can the TeamCity .NET NUnitLauncher process Microsoft csproj files?
I ask this question because of the following.
I have a NANT build script. In this script …
0
votes
1answer
36 views
+100
Running NUnit task in CruiseControl.NET always throws errors
So I'm fairly new to cc.net but like it so far. I have SVN getting latest, MSBuild building but when it comes to running my unit tests, kablooey.
I tried the fixes suggested about …
0
votes
1answer
18 views
How do I run a function before each test when using qUnit?
What is the equivalent of nUnits [SetUp] attribute for qUnit?
2
votes
2answers
29 views
File/Registry Test Case for NUnit
I am new (as of today) to NUnit and TDD. However, I am very interested in the technique and I am trying to learn. I have a test case I would like to read from a file if it exists …
0
votes
3answers
51 views
Using Nunit to test constructor
Hello,
I'm new to Nunit testing and I wanted to test the following constructor:
public class IngredientDAONHibernate : NutritionLibrary.DAO.IngredientDAO
{
priva …
1
vote
1answer
26 views
How to test Nhibernate with Nunit?
Sorry for the repost.
I'm using Nhibernate for ORM and have this class I need to perform unit tests using Nunit:
using System;
using System.Collections.Generic;
using System.Linq …
3
votes
2answers
118 views
What is a good, free C# unit test coverage tool?
I'm looking for a tool that I can run against my code base to determine which areas of my code are covered by NUnit tests I've written. I would appreciate any suggestions at all, a …
0
votes
1answer
21 views
How test SqlParameter for equality
Using NUnit and NMock2 I was not able to compare what I thought were the same SqlParameters:
SqlParameter param1 = new SqlParameter("@Id", 1);
SqlParameter param2 = new SqlParamet …
0
votes
2answers
36 views
Can’t run Nunit tests on Windows 7 in Nunit-gui.exe
I recently upgraded to Windows 7 from Vista and since switching, I can no longer use nunit-gui.exe to run my tests. Every time I do, I get the following error:
System.IO.FileLoad …
0
votes
2answers
28 views
How do I reset the result for a property in a stub without resetting the entire stub?
I'm new to Rhino Mocks, so I may be missing something completely.
Lets say I have an interface with has a half dozen properties:
public interface IFoo {
string Foo1 { get; } // …
4
votes
2answers
86 views
NUnit: Assert.Throws
How do I use Assert.Throws to assert type of the exception and the actual message workding.
Something like this:
Assert.Throws<Exception>(
()=>user.MakeUserActive()) …
2
votes
5answers
49 views
Unit test product with license file
Ive started working on a product that uses license files. These files need to be read (and verified) in order for the application to work. This causes some problems in the unit tes …
