I am trying to specify nUnit testCases using tuples, but I get a compiler error in VisualStudio.
This simple example demonstrates what I am trying to do:
[TestCase((1, 2), (3, 5))]
public void TestRangeOverlaps((int start, int end) firstRange, (int start, int end) secondRange)
{
}
If this is possible, what am I missing?