How can I annotate my MBUnit test with a test data source attribute like in NUnit:
Pseudocode like its in NUnit:
[TestCaseSource("GetData")]
public void Test(int value)
{
}
private static IEnumerable<int> GetData()
{
yield return 1;
yield return 2;
yield return 3;
}