Is it possible to provide a tuple value for the parameter of a test case? I am not sure if this is possible or I am not able to get the syntax correct.
[Test]
[TestCase((0, 0))]
public void Should_Test((int x, int y) arg)
{
// testing code
}