// http://code.google.com/p/mbunit-resharper/issues/detail?id=17 using MbUnit.Framework; namespace SampleTests { [TestFixture] public class TestForIssue17 { [RowTest] [Row("abc")] [Row("")] // or could use Row[(null)] same effect [Row("ok")] public void testWithEmpty(string str) { Assert.AreEqual(str, str); } [RowTest] [Row("abc")] [Row(null)] // or could use Row[(null)] same effect [Row("ok")] public void testWithNull(string str) { Assert.AreEqual(str, str); } } }