3
votes
4answers
69 views
C#: How to test a basic threaded worker class
I'm dipping my toes in how to test multi-threaded stuff, but not quite sure how to get started. I'm sure I will figure more stuff out easier if I could just get stuff going, so I w …
0
votes
2answers
19 views
Integration test failing through NUnit Gui/Console, but passes through TestDriven in IDE
I am using NHibernate against an Oracle database with the NHibernate.Driver.OracleDataClientDriver driver class. I have an integration test that pulls back expected data properly …
0
votes
2answers
30 views
nUnit Test function which uses executable path to open a file
hi, I have a function which opens up the help file for the app. The function takes 3 arguments :
ShowHelp(appPath, 1,
@"heelp\help.doc")
The first argument is the start pa …
1
vote
2answers
25 views
Unit testing function XPath query results?
I'm having a little bit of a dilemma. I have a very basic class with functions returning specific XPath query results.
Here is the code I'm currently using.
[TestFixture]
public …
13
votes
7answers
198 views
Unit test for thread safe-ness?
I've written a class and many unit test, but I did not make it thread safe. Now, I want to make the class thread safe, but to prove it and use TDD, I want to write some failing un …
0
votes
2answers
11 views
Nunit: Can you open multiple projects in unit using a bat file?
I currently used a batch file which runs a project of mine which is simlar to the following:
nunit-gui.exe nunit.tests.csproj
Can it be setup to use two or more project files? I …
1
vote
3answers
42 views
Unit testing database-dependent Window services
We have a set of services in .NET 3.5\C# and WCF.
The NUnit tests need the services to be running and listening for requests.
The services need an updated SQL database to be ready …
1
vote
1answer
34 views
Code coverage with nUnit?
Is there a way to see the code coverage when using nUnit? I know there's such a feature in visual studio but can you use it with nUnit or only with the built-in vs unit tests?
5
votes
9answers
172 views
Why do we need mocking frameworks?
I have worked with code which had NUnit test written. But, I have never worked with mocking frameworks. What are they? I understand dependency injection and how it helps to improve …
0
votes
0answers
15 views
log4net output is missing from nuit GUI
I have a class library project in Visual Studio 2008. In that project, I have an Assembly attribute in the AssemblyInfo.cs file to load the log4net file. that file has only one app …
0
votes
2answers
103 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
1answer
17 views
TeamCity NUnit test result visualisation
Hi,
Is there any way to produce visual results of NUnit tests from within TeamCity's "Tests" tab, currently my NAnt script outputs an .xml file of the results using the following …
1
vote
5answers
78 views
Testing things that should be the same both ways
For example the Equals method. a should equal b and b should equal a. Would you say it is OK to check this in one test case using two asserts like the following:
[Test]
public voi …
2
votes
2answers
55 views
NUnit tests that call .DLLs that call WCF Web Services (.NET C#)
This relates somewhat to:
http://stackoverflow.com/questions/24993/invalidoperationexception-while-creating-wcf-web-service-instance/1711550#1711550
I have a .NET C# class libra …
0
votes
3answers
156 views
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 …
