nunit-core team mailing list archive
-
nunit-core team
-
Mailing list archive
-
Message #00328
[Bug 537914] [NEW] TheoryAttribute does not work with generics
Public bug reported:
Setting: NUnit 2.5.3, Console runner, .NET 3.5
TheoryAttribute does not work with generics:
[Datapoint]
public double[,] Array2X2 = new double[,] { { 1, 0 }, { 0, 1 } };
[Theory]
public void TestForArbitraryArray<T>(T[,] array)
{
// ...
}
NUnit gives a warning saying "No arguments were provided".
** Affects: nunitv2
Importance: Undecided
Status: New
--
TheoryAttribute does not work with generics
https://bugs.launchpad.net/bugs/537914
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
Status in NUnit V2 Test Framework: New
Bug description:
Setting: NUnit 2.5.3, Console runner, .NET 3.5
TheoryAttribute does not work with generics:
[Datapoint]
public double[,] Array2X2 = new double[,] { { 1, 0 }, { 0, 1 } };
[Theory]
public void TestForArbitraryArray<T>(T[,] array)
{
// ...
}
NUnit gives a warning saying "No arguments were provided".
Follow ups
References