Tagged Questions
xUnit.net is a unit testing tool for the .NET Framework. Written by the original inventor of NUnit, xUnit.net is the latest technology for unit testing C#, F#, VB.NET and other .NET languages. Works with ReSharper, CodeRush, and TestDriven.NET.
123
votes
8answers
24k views
NUnit vs. MbUnit vs. MSTest vs. xUnit.net
There are quite a lot of unittesting frameworks out there for .NET. I found this little feature comparison: http://xunit.codeplex.com/wikipage?title=Comparisons
Now I am to choose the best one for ...
26
votes
11answers
4k views
Is Assert.Fail() considered bad practice?
I use Assert.Fail a lot when doing TDD. I'm usually working on one test at a time but when I get ideas for things I want to implement later I quickly write an empty test where the name of the test ...
15
votes
11answers
2k views
Unit Testing with functions that return random results
I don't think that this is specific to a language or framework, but I am using xUnit.net and C#.
I have a function that returns a random date in a certain range. I pass in a date, and the returning ...
13
votes
5answers
445 views
Is this test name just a bit over the top
As the title suggests, is this test name just a little of the top?
WhenChargeIsGreaterThanRestingChargeButLessThanChargeRestApproachStep_OnUpdate_ChargeIsSetToRestingCharge
Any suggestions on how ...
11
votes
2answers
2k views
Running XUnit.net Tests with TestDriven.net
I've used NUnit for years and I wanted to try XUnit. So I installed XUnit and ran the executable that allowed you to run XUnit via TD.net.
I can't seem to run more than one test at a time. With ...
9
votes
2answers
2k views
xUnit : Assert two List<T> are equal?
Hi I'm new to TDD and xUnit so I want to test my method that is something like :
List<T> DeleteElements<T>(this List<T> a, List<T> b);
of course that's not the real method ...
7
votes
5answers
301 views
Which is better? Unit-test project per solution or per project?
Is it better to have a unit-test project per solution or a unit-test project per project?
With per solution, if you have 5 projects in the solution you end-up with 1 unit-test project containing ...
7
votes
3answers
468 views
How do I configure visual studio to run xUnit.net tests?
I have configured Visual Studio 2010 to debug xUnit.net tests by setting the Project Settings | Debug | Start External Program to run the xUnit.net console runner.
This works OK but only when ...
7
votes
5answers
238 views
how often should the entire suite of a system's unit tests be run?
Generally, I'm still very much a unit testing neophyte.
BTW, you may also see this question on other forums like xUnit.net, et cetera,
because it's an important question to me. I apoligize in ...
6
votes
3answers
1k views
Is there a way to unit test an async method?
I am using Xunit and NMock on .NET platform.
I am testing a presentation model where a method is asynchronous.
The method creates an async task and executes it so the method returns immediately and ...
6
votes
2answers
1k views
How do I get Team Build to show test results and coverage for xUnit.net test suite?
Has anybody had any success getting Team Build to show xUnit.net test results and code coverage in the build report? The MSBuild runner is running the tests just fine and the results are in the log ...
4
votes
3answers
193 views
Faking/mocking an interface gives “no default constructor” error, how can that be?
I'm trying to write a unit test of a repository implementation. The repository uses RavenDB as a database. For the unit tests, I would like to mock the RavenDB parts. In order to create the mocks ...
4
votes
1answer
685 views
How to isolate a bad COM component (HP Quality Center 10.0) from a .Net application when performing integration tests
I'm currently working on some .Net based software (.Net Framework 3.5 SP1) that integrates with HP Quality Center 10.0 through it's COM Client API (often referred to as TDApiOle80 or ...
4
votes
1answer
389 views
Can TransactionScope rollback be used with Selenium or Watin?
I am trying to do some automated web testing of my ASP.NET application. I was hoping to use the AutoRollback attribute from Xunit.net extensions to undo any database changes that were made during the ...
3
votes
1answer
103 views
Asynchronous tests in VSUTF, NUnit, xUnit.NET, MbUnit vs. SUTF?
Silverlight Unit Test Framework has an [Asynchronous] attribute (AsynchronousAttribute) that causes the tests to only end when EnqueueTestComplete() gets called. This allows for a simple way to write ...
3
votes
1answer
131 views
Run and publish xUnit.net tests in a TFS 2008 build
I have team build running on a TFS 2008 server. I want it to run my xUnit.net tests there and show the result in the Build details.
I know I have to do a lot of configuration in the TFSBuild.proj ...
3
votes
4answers
370 views
Getting started with automated integration/unit testing in an existing code base
Background: We have been handed over a very large codebase (1.4 million lines) that is primarily in C#. The application consists primarily of asp.net 2.0 style asmx web services accessing data in a ...
3
votes
3answers
254 views
Attribute cannot be repeated in C++/CLI but OK in C#?
I'm getting error C3095: 'Xunit::Extensions::InlineDataAttribute': attribute cannot be repeated in C++/CLI code but not C#.
xUnit.net looks like the answer to my prayers - a modern unit test ...
3
votes
1answer
189 views
TeamCity build does not run new XUnit tests
I'm using TeamCity 5 with Git VCS and Visual Studio 2010 SLN build runner.
My solution has a class library proj containing a number of XUnit 1.5 tests. The post build event on this project runs the ...
3
votes
2answers
873 views
Migrate from MSTest to XUnit
We are thinking about moving our tests from MSTest to XUnit.
Is there any migration application that takes a MSTest and migrates it to XUnit?
Also, if not, what should I look out for when doing ...
3
votes
2answers
702 views
How (strategy) to unit test properties (get/set) in BDD style?
I have a class (of many) that have properties. Some have logic in them and some don't. Assuming I want to test these properties, how do I go about doing that?
Recently, I've been interested in BDD ...
3
votes
2answers
1k views
Trapping Error Status in MSBuild
As part of some build automation of running xUnit.net tests with MSBuild, I'm running into a case where I need to loop over a batch of items.
Inside the loop, I need to detect whether an iteration ...
3
votes
5answers
3k views
Watin Tests fail on CC.Net
I'm running Watin tests with xUnit on CC.Net under Windows Server 2003.
I have lots of tests that all run fine on development boxes with TestDriven.Net and on the server with the xUnit gui app. ...
3
votes
2answers
782 views
Extend xUnit.NET to use custom code when processing a class and locating test methods
I'm a big fan of the xUnit.NET framework; I find it light, simple, clean, and extensible.
Now let's say that I have a class like so:
public class AdditionSpecification
{
static int result;
...
3
votes
4answers
688 views
Is there a test runner for .NET tests that can run multi-threaded to take advantage of multi-core machines?
I'm setting up CI at present using Thoughtworks Studios' Cruise, Gallio to run xunit.net fact/tests, and ncover 2 to do code-coverage.
I noticed that running the code-coverage pegs one of the four ...
2
votes
1answer
123 views
How to run F# Silverlight Library project holding xUnit.net Contrib based unit tests?
I am unaware of any project templates for F# Silverlight 4 unit tests (I searched Online for templates through Add Project), so I am using the standard F# Silverlight Library project to hold my unit ...
2
votes
1answer
95 views
different mock objects to compare objects in unit tests
I have Equals method that I am trying to tests. this method return true if object passed to is is same as this object.
I test true condition as following.
var mocks = new MockRepository();
...
2
votes
1answer
124 views
Using xUnit.net AutoRollback and Multi Threading
I am trying to write a test case using xUnit.net and the AutoRollback attribute provided by the xunit extensions.
My test case goes like this
[Fact, AutoRollback]<br>
public void ...
2
votes
1answer
83 views
Error reporting in Visual Studio for MSBuild running xUnit.net
I am about to set up MSBuild to run xUnit.net as described here.
This is working. But when xUnit reports an error, the actual error and the line/file in which the error occurs are seperated into two ...
2
votes
3answers
1k views
How to get SpecFlow working with xUnit.net as the test runner
I'm trying to use xUnit.net as the test runner for SpecFlow. The SpecFlow 1.2 binaries from the official download area don't contain an xUnit.net provider but the master branch on GitHub has one, so I ...
2
votes
1answer
455 views
Unit test for Web Forms MVP presenter has a null Model
I am using Web Forms MVP to write an DotNetNuke user control. When the 'SubmitContactUs' event is raised in my unit test the presenter attempts to set the 'Message' property on the Modal. However ...
2
votes
2answers
627 views
Should I test UDP server code, and if so - why and how?
I don't have much experience doing unit testing. From what I learned, code should be decoupled, and I should not strive to test private code, just public methods, setters, etc etc.
Now, I have ...
2
votes
2answers
383 views
Moq and accessing called parameters
I've just started to implement unit tests (using xUnit and Moq) on an already established project of mine. The project extensively uses dependency injection via the unity container.
I have two ...
2
votes
2answers
274 views
Xunit: Perform all 'Assert'ions in one test method?
Is it possible to tell xUnit.net to perform all e.g. Assert.True() in one test method? Basically in some of our use/testcases all assertions belong logically to one and the same 'scope' of tests and I ...
2
votes
2answers
182 views
Visual Studio “Run a method” vs “Utility tests”
I use XUnit and Resharper to run my tests. In a given project I usually have a few utility tests which are not really tests but exist purely so I can execute a bit of code easily. For example, I have ...
2
votes
2answers
1k views
ReSharper doesn't see my Machine.Specification tests
I'm having a problem getting ReSharper to see the Machine.Specification "tests" I've written.
The specs run in the ConsoleRunner from mSpec. When I try to "Run Unit Tests" in ReSharper, I get a ...
2
votes
3answers
386 views
Execute unit tests serially (rather than in parallel)
I am attempting to unit test a WCF host management engine that I have written. The engine basically creates ServiceHost instances on the fly based on configuration. This allows us to dynamically ...
2
votes
3answers
350 views
In xUnit.net, is it possible to run tests in order?
I know you generally should not depend on order for your unit tests, but in xunit is it possible to make your tests run in a certain order?
2
votes
3answers
473 views
Non-code-generated forwarding shim for testing private methods
In general, I design classes in such a manner as to not require access to privates for testing purposes. An InternalsVisibleTo can also assist.
However, I'm currently dealing with a codebase that ...
2
votes
3answers
2k views
How do I automate unit tests for a console application in TeamCity?
I've written a console application that has a number of unit tests and I'm wanting to include it in my nant build script so that it will be run on our TeamCity CIS.
Unfortunately I'm not quite sure ...
2
votes
2answers
2k views
Help troubleshooting System.BadImageFormatException:
While debugging through a .NET 3.5 SP1 project which is contacting a local web service, I'm receiving the exception
System.BadImageFormatException: "Bad Class Token"
Of course there aren't much more ...
1
vote
3answers
48 views
Are there any good documentations / books / tutorials for xUnit.NET?
On my search for a Unit-Testing tool for C# i have found xUnit.NET. Untill now, i read most of the articles on http://xunit.codeplex.com/ and even tried out the examples given at How do I use ...
1
vote
1answer
35 views
Visual studio with xUnit, Assert.Throws and “Exception was unhandled by user code”
i am trying to run tests inside a dll application (VS2010/C#) using using xUnit 1.8.0.1549.
To do so i run xUnit via visual studio using "Start External Program" under "Start Action" in the project ...
1
vote
1answer
48 views
Monitoring unit test that runs in CI
I want to monitor xunit.net tests that are running in CI (if you know similar approaches for nunit it may also helps).
Integration tests that were running double in time and I would like to get ...
1
vote
1answer
138 views
xUnit + Gallio + code coverage in Visual Studio 2010
I'm trying to find a way to migrate from mstest to xunit and still benefit from the IDE integration which made me choose mstest in the first place. Gallio seems to accomplish this noble goal, plus ...
1
vote
1answer
76 views
xUnit.net does not capture console output
I just started testing xUnit.net, but it doesn't seem to capture any output (Console, Debug, Trace), as I would have expected.
Is that possible? I am using a sample .NET 4.0 class-library with xUnit ...
1
vote
3answers
152 views
Run NUnit Test cases using xUnit Test
I want the ability to run NUnit tests from xUnit using somehting like xunit.nunit.dll.
1
vote
2answers
279 views
How to write a simple WP7 unit test using xUnitContrib?
I'm working from the XunitContrib codeplex page and toward the bottom it lists these steps
For Windows Phone 7
Follow along with this blog post
Create a Windows Phone application
Add references to:
...
1
vote
1answer
74 views
How does xUnit runner handle static methods w/static class constructor?
If I have a class with static Facts (test methods) and the class has a static constructor, is the constructor called for each Fact or only once for all Facts in a class? I guess it depends on how the ...
1
vote
2answers
190 views
xUnit.net with Ninject
I'm using Ninject in my MVC 3 project and that works fine, but I was wondering whats a good way to use Ninject in my Tests project?
Heres how I'm currently doing things:
[Fact]
public void ...