Yes. You can define a source for the test cases. The source can be either a method, field or a property, may be static or instance. The requirement is that the source should return an IEnumberable or another type that implements it. Of course the sources are reusable for multiple test methods which is your requirement.
You indicate the source for test cases by decorating the method with the TestCaseSourceAttribute. The snippet below is an example from the link I provided.
static int[] EvenNumbers = new int[] { 2, 4, 6, 8 };
[Test, TestCaseSource("EvenNumbers")]
public void TestMethod(int num)
{
Assert.IsTrue( num % 2 == 0 );
}
Also take into consideration that in the latest verion of NUnit, the is no Row or RowTest attribute, for more information visit this question: What happended to nunit extensions/rowtest?