[TestFixture]
public class SampleFixture
{
[Column("123", "456")]
private string parameter; // Causes the fixture to be run once for each value.
public IEnumerable<string> GetData()
{
yield return "abc" + parameter;
yield return "def" + parameter;
yield return "ghi" + parameter;
}
[Test, Factory("GetData")]
public void MyDataDrivenTest(string text)
{
TestLog.WriteLine(text);
}
}
You might want to read the articles about data-driven tests in the Gallio wiki. You will find many examples explaining how to use [Row], [Column], and other convenient features for creating data-driven tests with MbUnit.
UPDATE: In the example above, I've just concatenated the data from the factory with the external parameter. Thus the test will be run 6 times ("abc123", "def123", "ghi123", "abc456", "def456", and "ghi456"). But you could just use the parameter in another way; such as modifying the whole behavior of GetData.