xUnit.net, PropertyDataAttribute and derived classes
2 min read
Apparently do not work well together... Consider the following: [code lang="csharp"] public class Foo { public int AddsNumbers(int x, int y) { return x + y; } } public class FooTest { public static IEnumerable<object[]> Expectations { get { yield return new object[] { 1, 2, 3 }; } } [Theory] [...