public void TryGetRowSet_UnitTest()
 {
     String name = default(String);
     IRowSet rowset = default(IRowSet);
     ExecuteMethod(
         () => { return (IRowSetCollection) GetInstance(); },
         instance =>
         {
             name = default(String); //No Constructor
             rowset = RowSetWrapper_UnitTests.GetInstance();
             TryGetRowSet_PreCondition(instance, ref name, ref rowset);
         },
         instance => { instance.TryGetRowSet(name, out rowset); },
         instance => { TryGetRowSet_PostValidate(instance, name, rowset); });
 }
 partial void TryGetRowSet_PreCondition(IRowSetCollection instance, ref String name, ref IRowSet rowset);
 partial void TryGetRowSet_PostValidate(IRowSetCollection instance, String name, IRowSet rowset);
 partial void Columns_SetCondition(ref IRowSet instance, ref IRowSetColumn[] setValue);