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.

learn more… | top users | synonyms

1
vote
0answers
8 views

xUnit Runner for Visual Studio 2012 and native .dlls

Context I am an application with C# and C++/CLI dlls. The C++/CLI dlls reference pure C++ .dlls, e.g. the boost libraries. Tests are compiled into Tests.dll, which is placed with all the other ...
1
vote
1answer
30 views

Unit tests appear in xUnit GUI (xunit.gui.clr4.exe) but not VS 2012 Test Explorer

I have an F# Class Library with the "xUnit.net" and "xUnit.net Runners" packages installed using NuGet. I have the following code: module XUnitTest open Xunit [<Fact>] let Test () = do ...
3
votes
1answer
77 views

AutoFixture in F# UnitTest Project Not Displaying Unit Tests in Test Explorer

I have a Visual Studio 2012 Project and the following NuGet Packages installed: AutoFixture with Auto Mocking using Moq Autofixture with xUnit.net data theories AutoFixture Moq xUnit.net: ...
0
votes
1answer
38 views

Xunit only completing 1 test but there are 6 tests in the project

I've written 6 tests using Xunit for the first time. [Fact] public void test_1()... [Fact] public void test_2()... [Fact] public void test_3()... [Fact] public void test_4()... [Fact] public ...
1
vote
0answers
63 views

Reuse connection among DbContext instances in unit test

I'm trying to setup some unit tests using EntityFramework 5, SQL Server Compact 4 and Xunit. I'm using different context instances because I'm testing a ASP MVC app and I need to test the behavior ...
0
votes
1answer
66 views

Why is the xUnit Runner not finding my tests

I'm hoping this is a duplicate and will be happy to close it if someone can dig up the original but I can't find anything googleable so want to add this self-answered question so I can refer people to ...
1
vote
2answers
47 views

Extending XUnit Assert class with new asserts

I'm trying to extend the xUnit assert method by adding some selenium functionality namespace MyProject.Web.Specs.PageLibrary.Extensions { public static class AssertExtensions { public ...
0
votes
1answer
46 views

Searching for nicer implementation for this unit test

I use xUnit and FluentAssertions to write my unit tests and I am stuck at the following problem. As I have not implemented the catch (in GetCountriesAsync) of the WebException yet, I throw a new ...
0
votes
1answer
29 views

Timeout per unit-test class supported?

In NUnit I can add a [Timeout(5000)] attribute at the TestFixture (test class) level to specify an upper limit for each test method in that class. In xUnit, I know I can do something similar, but at ...
3
votes
0answers
80 views

Does Jenkins supports XUnit.Net?

I am used to XUnit.net for all my unit testing needs in my C# projects. For my personal projects I was using TeamCity as my CI server and with the right plugin, the unit tests were correctly launched ...
0
votes
2answers
24 views

API docs for xunit.net

Can someone please point me to help file/API docs for xunit.net , i am new to xunit.net and till now not able to locate help file/API docs
3
votes
3answers
160 views

AutoData Theories with AutoFixture using manual fakes

Given this system to test: public class MySut { private readonly IHardToMockDependency _hardToMockDependency; public MySut(IHardToMockDependency hardToMockDependency, ...
0
votes
0answers
29 views

Is there a way to test generic methods with xunit.net?

I have an extension method defined as follows: /// <summary> /// Cross one list with another list of the same type. /// </summary> /// <typeparam name="T"></typeparam> /// ...
0
votes
0answers
14 views

How to tell XUnit to stop running after first failure?

Simply stop on first failures and leave the state as is. This would allow us to investigate some hard to catch flakiness.
1
vote
0answers
21 views

What does a blue bar indicated in xUnit.net Test Runner?

I know about green and red, but what is the meaning of the blue/violet seen below? This happened after running the Sync test, then running it again. The Total tests:2, Failures: 1, Skipped: 0 ...
0
votes
1answer
60 views

Skipping a whole test class in xUnit.net

Is it possible to skip all tests from a specific class like in NUnit [TestFixture] [Ignore("Reason")] public class TestClass { }
0
votes
1answer
55 views

Xunit.net: cannot find Assert.Fail and Assert.Pass or equivalent

I used to use these in NUnit and they are really useful. Any idea how to do something like that? EDIT, CODE SAMPLE: bool condition = false;//would be nice not to have this ...
0
votes
0answers
157 views

Testing Generic Repositories Using Mock

I am trying to learn Generic Repository, Unit Of Work, DDD concepts. I read lots of articles and reviewed many sample projects. At least i could create a sample and now i want to use Moq and Xunit ...
0
votes
0answers
17 views

XUnit tests in order [duplicate]

I'm working with xUnit testing framework and I'm trying to find out if there's any way to run my test cases but respecting some order I specify. I know I have the TestPriority attribute as I saw ...
3
votes
1answer
172 views

How to handle exceptions thrown by Tasks in xUnit .net's Assert.Throws<T>?

The following asynchronous xUnit.net test with a lambda marked with the async modifier fails by reporting that no exception was thrown: [Theory, AutoWebData] public async Task ...
4
votes
0answers
87 views

does AutoMoqCustomization work for abstract classes?

Please note, I'm somewhat new to TDD, so I will take general advice as well as specific answer. Neither abstract classes nor interfaces can be instantiated. Clearly Moq can give me a mocked up ...
1
vote
0answers
129 views

Is there any advanced console test runner for xUnit.net

I am searching for an advanced console based test runner for xUnit.net. The requirements are: It should be able list all executed tests It should be able to list all tests within an assembly You ...
9
votes
3answers
322 views

xUnit - run code before and after ALL tests

TL;DR - I'm looking for xUnit's equivalent of MSTest's AssemblyInitialize (aka the ONE feature it has that I like). Specifically I'm looking for it because I have some Selenium smoke tests which I ...
2
votes
1answer
122 views

using dependency properties along with async ctp

I have created some sample ViewModel to test usage of DPs with asyncCtp: public class SampleVm : DependencyObject { public static readonly DependencyProperty SampleDependencyPropertyProperty = ...
3
votes
1answer
146 views

Running XUnit.Net tests from Main Method / Within MonoDevelop

I am trying to use xUnit.net to test a project I wrote in Mono on OSX. I wannt good way to run the tests in MonoDevelop or at least a way to create a test suite and run these tests from a main method ...
1
vote
1answer
257 views

.NET Unit Testing - Moq/xUnit frameworks with MVC, not returning expected results

Here's my scenario: I'm working with a .NET MVC 4.0 project, with a repository (as you'd expect), and trying to implement the Moq/xUnit testing libraries into a .NET Unit Testing project. I've got ...
4
votes
3answers
193 views

.NET test framework with parameterized unit testing, that shows red/green for each combination?

Parameterized Unit Testing is great when you have X unit test * Y configurations. I have 3 unit tests, and each must run in 5 particular situations. I use xUnit.net's Theory/PropertyData feature, it ...
1
vote
1answer
115 views

xunit.net parameterized unit testing: Show red/green for each combination?

Parameterized Unit Testing is great when you have X unit test * Y configurations. I have 3 unit tests, and each must run in 5 particular situations. I use xUnit.net's Theory/PropertyData feature, it ...
1
vote
1answer
266 views

Add xUnit test project to an existing Visual Web Developer 2010 express MVC application

Maybe it's very easy but I'm trying to add support for xUnit in Visual Web Developer 2010 Express. I followed this tutorial on how to install everything but the main problem is that this tutorial only ...
0
votes
2answers
209 views

Debugging xUnit tests in Visual C# Express?

I have written xUnit tests for my C# solution. Visual C# Express does not integrate with unit test tools, so people usually use external tools, and indeed I have used the external xUnit test runner ...
1
vote
1answer
173 views

Run xUnit test with Team Build 2010

I need to configure Team Build Server (TFS 2010) to run xUnit tests as well as MSTests. Some information I've found is the next urls: ...
2
votes
2answers
282 views

Why do my test functions appear in code coverage? (or how to make them 100%?)

I'm using xUnit to test my C# code and I'm using Visual Studio Premium 2012. In my solution I have my main project that I'm testing and a 2nd project that contains all of my tests. I'm supposesd to ...
3
votes
2answers
392 views

XUnit / Resharper - How to run setup code only once

I'm trying to setup my tests using Xunit. I have a requirement to delete all images in a folder start of the tests, and then each method does some image resizing and saves a copy of it's output to the ...
4
votes
2answers
328 views

How to add support for xunit's Theory attribute in Approvaltests

When I try to use approvals with my unit test decorated with [Theory] attribute it says: System.Exception: System.Exception : Approvals is not set up to use your test framework. It currently supports ...
4
votes
3answers
318 views

Why isn't xUnit.net's FactAttribute AttributeUsage.Inheritable?

Having not written a unit testing framework before, it seems to me that an inheritable Fact attribute would make it easier to write abstract test classes or test interfaces if certain types in an ...
0
votes
2answers
163 views

Error when creating ASP.NET MVC 3 project with xUnit: xunit.targets not found

I create an ASP.NET MVC 3 project and a unit test project using xUnit.net. But I got an error like this, and the unit test project is not created. Does anyone know how to fix it? I'm using ...
9
votes
1answer
1k views

xUnit and Moq do not support async - await keywords

I am trying to discover how to apply the async and await keywords to my xUnit tests. I am using xUnit 1.9 and Async CTP 1.3. Here is my test case I have an interface which specifies one asynchronous ...
0
votes
1answer
149 views

XUnit Assertion for checking equality of objects

I am using XUnit framework to test my C# code. Is there any assert method available in this framework which does the object comparison? My intention is to check for equality of each of the object's ...
1
vote
1answer
53 views

How to configure the test flow using xunit

I'm new xunit and want to configure the test flow using xunit. For example, there are several test methods A, B, C, D, and I want to ran them in several ways: 1. Run them in a specific order B, A, C, ...
0
votes
1answer
130 views

Running xUnit 1.9 from TestDriven.NET 3.3 Beta 2

I am trying to run xUnit tests (from an F# module, if it makes any difference) using TestDriven.NET, but whatever I do I get this error: It looks like you're trying to execute an xUnit.net unit test. ...
2
votes
1answer
270 views

How to do unit test console output with xUnit.net?

I have a method that prints private variable of the class. public class Test { private int number; public Test(int number) { this.number = number; } public void ...
8
votes
1answer
352 views

Is there a more appropriate to test if the constructor throws an exception?

Normally you test, if an exception gets thrown in a certain method, as follows. I use FluentAssertions: [Fact] public void Exception_gets_thrown() { // Arrange var foo = new ...
2
votes
1answer
145 views

BDD solution testing of different layers outside-in

Recently, I got started reading on BDD and TDD and I got hooked. I got lost with the amount of unorganized sources of information and different opinions of what's best and what not. At the end I ...
3
votes
1answer
509 views

App.config for Xunit

I'm writing some xUnit tests for some helper classes that relies on some configuration settings, usually stored in App.config or Web.config of the executing project. The config looks like this: ...
1
vote
1answer
92 views

Do xunit tests run in total isolation?

If I have a static class: public static class Foo { public static string Bar = "baz"; } And inside a xunit test I do something like this (contrived): public class FooTests { [Fact] ...
0
votes
0answers
44 views

xUnit.Net - is it possible to ignore an entire namespace?

In my test assembly I frequently have a Spikes directory where I put...well...spike code from early in the project. I rarely maintain or even run these tests as they usually have to do with ...
1
vote
1answer
255 views

How to test two objects are equal in xunit.net?

I am reading Test Driven Development: By Example. All examples use Java and Junit (I am on chapter 10). There are one test method that test for equality of two objects. I already override Equals of ...
2
votes
1answer
230 views

VS 11 Unit Testing Frameworks [closed]

We have started working on VS11 projects involving a DDD - Agile - TDD approach. I'm using VS 11 Beta and I'm very impressed by the new Unit Tests features that includes the possibility to use 3rd ...
1
vote
1answer
280 views

Unhandled MethodAccessException using Moles and xUnit.net to run unit tests

I have a unit test project in Visual Studio 2010 (.NET 4) that utilizes the xUnit.net testing framework, Moq, and the Moles Isolation framework for generating stubs of static methods. I am using xUnit ...
1
vote
2answers
330 views

How to set the test case sequence in XUnit

Hi I have written the Xunit test cases in C#. That test class contains so many methods. I need to run the whole test cases in a sequence. How can I set the test case sequence in XUnit?

1 2 3