MbUnit Re: VB.NET RowTest with and without ExpectedExceptions Question

2007-09-23 Thread [EMAIL PROTECTED]
That seems to make sense, thanks! I will give this a try. Cheers, Bob Porter On Sep 22, 2:26 am, Jeff Brown <[EMAIL PROTECTED]> wrote: > You can indeed specify the exception per row but you need to do it like > this: > > > > Notice that the expected exception is a named property of the Row > a

MbUnit Re: VB.NET RowTest with and without ExpectedExceptions Question

2007-09-21 Thread Jeff Brown
You can indeed specify the exception per row but you need to do it like this: Notice that the expected exception is a named property of the Row attribute in this case. The way you wrote it originally was applying the ExpectedException to the whole test. Jeff. __