Using the NUnit framework , you must pass parameters for the test as follows:
[TestCase(1, 2, 3)] [TestCase(10, 20, 30)] public void My_test_method(int first, int second, int third) {
This will run two separate times, passing the values 1, 2, 3 in the first run and 10, 20, 30 in the second.
Edit: review of available test videos for NUnit, see this SO question
source share