What steps will reproduce the problem?
1. Create a new C# library project
2. Add xunit via nuget (1.9.1.1600 used for testing)
3. Add an compile the following code
public static class Class1
{
[Fact]
public static void MethodName()
{
Assert.True( false );
}
}
4. Open compiled dll in Gallio Icarus. No test methods are found.
What is the expected output? What do you see instead?
Class1.MethodName is found as a valid xunit test method.
This is big trouble for people that want to run F# xunit tests via gallio. The
easiest way to write these tests is as members on a module, which is compiled
to a static class.
Note that the xUnit runner handles these tests just fine, as does the xunit
VisualStudio Runner extension.
Original issue reported on code.google.com by jojo.rudolph@googlemail.com on 1 Nov 2012 at 9:05
Original issue reported on code.google.com by
jojo.rudolph@googlemail.com
on 1 Nov 2012 at 9:05