Problems generating unit tests when using a typed data set with a partial class
I'm new to unit testing and had a problem with the following (VB.Net). I have a typed data set in my application and I have extend the functionality of this data set using a partial class (rather than inheriting it).
So, I've got a dataset called lets say "SomeDataSet". It has one table and one field. I then extend it by creating a new class like:
Partial
EndClass (Even a blank partial class will cause a problem.) Then in one of my classes I have a module level variable like the following Public
End
Class(SomeTable is a table in my typed data set) Then using VB.Net I select "Create Private Accessors" on my SomeObject class. The resulting output does not contain the mDataRow member. However, if I remove the partial class it does. I also have a similar problem with the "Create Tests" function. I'm just wondering if anyone knows anything about this problem? Thanks in advance.

