I am trying to use TestCaseSource
in NUnit to run multiple tests with one of parameters being an array
private static readonly object[] ReturnChopCases =
{
new TestCaseData(3, new List<int> {}).Returns(-1),
new TestCaseData(3, new List<int> {1}).Returns(1),
new TestCaseData(1, new List<int> {1,2}).Returns(1),
};
[TestCaseSource("ReturnChopCases")]
public int test_chop(int SearchNumber, int[] SearchArray)
{
return Chopper.Chop(3, SearchArray);
}
The problem is the name displayed in the test runner (I'm using the NUnit Test Adapter) is pretty useless, they all show as test_chop(0,System.Int32[])
or if using a List
then test_chop(0,System.Collections.Generic.List`1[System.Int32])
.
How do I retain a fairly readable test and give a useful test name to the test in the test runner? I've tried a few things but I still get the name mentioned above.
Use the
SetName
function to name the Test