2
votes
2answers
38 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 …
5
votes
8answers
549 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, …
0
votes
3answers
51 views
NCover not covering an assembly?
I am having trouble getting NCover to properly cover a .dll. I have several test projects that use XUnit.NET and SubSpec to execute BDD-style specifications. All but one of these t …
2
votes
1answer
107 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 wit …
1
vote
2answers
39 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. …
1
vote
3answers
85 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 …
0
votes
1answer
50 views
xUnit.net Test Stripper [to remove test code embedded in binaries prior to deployment/shipping]
Is there a Test Stripper (as defined in xUnit Test Patterns) available that supports removing classes containing methods tagged as [Fact]s etc. plus the dependency on xunit.dll fro …
1
vote
1answer
95 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 ReSh …
0
votes
1answer
34 views
Running portion of a TeamBuild as x64 [for xunit.net tests]
Using Team Foundation Build, I'm invoking the xunit.net xunit task, which is /platform:AnyCpu, but my TeamBuild invocation of the TFSBuild.proj is vanilla.
I have a number of test …
1
vote
1answer
90 views
Getting Console output to display from Gallio & xunit.net
Previously when executing unit tests with xunit.net / testdriven.net I could see output written to the console (via Console.WriteLine) displayed in the output window.
I'm now usin …
0
votes
2answers
78 views
Are there any .NET web automation frameworks that support headless test execution?
Similar to htmlunit, but for use with C#. I've seen that you can use htmlunit with .NET via IKVM, but I'd like a native solution if at all possible.
The aim is to add UI tests to …
0
votes
1answer
62 views
Test class constructors not executing when running an xUnit Theory individually?
Toy example code:
public abstract class testBase
{
public testBase()
{
//Some common test setup code, which will initialize ManagerClass
}
}
public class someTests: tes …
0
votes
2answers
36 views
Localized xUnit.net Output in Visual Studio Output Window
Hi folks
I am using xUnit.net (1.5, but 1.1 seems to have the same issue) in a Visual Studio 2008 solution (with a simple post build event). The host system (Windows XP) is the lo …
2
votes
2answers
385 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 …
0
votes
2answers
199 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 whe …
