I have some test methods which have nullable parameters (int?, etc) as
inputs for some optional data. Everything compiles but when I try to
run the test I get:

failed: Couldn't find member with name 'BasicObjectCRUDTest' and XML
name
'M:OrderTests.BasicObjectCRUDTest(System.Nullable<System.Int32>,System.Nullable<System.Int32>)'

Here's the test:

[Test]
[Row(1,null)]
[Row(null,1)]
public void BasicObjectCRUDTest( int? iUserID , int? iCustomerID )
{
.....



Does row work with test methods where one or more parameters are a
nullable type?

thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MbUnit.User" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/MbUnitUser?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to