MbUnit supports different flavors of parameterized unit tests: RowTest, CombinatorialTest, etc... If you are already using those features, it would be very easy for you to 'pexify' them:
namespace MyTest{ using MbUnit.Framework; using Microsoft.Pex.Framework; [TestFixture, PexClass] public partial class MyTestFixture { [RowTest] [Row("a", "b")] [PexTest] public void Test(string a, string b) { ... } } }
Isn't this nice? :)
Some little notes:
Page rendered at Thursday, December 04, 2008 9:08:08 AM UTC
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.