using Xunit; namespace Tests { /// /// Represents a set of data for a theory. Data can be added to the data set using the collection initializer syntax. /// /// public class TestData : TheoryData { /// /// Adds a theory to the Test /// /// Name of the Test /// Data used in the Test public void Add(string testName, T testObject) { AddRow(testName, testObject); } } }