Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
First, we use unit testing as well (Team Foundation)....and we take a different approach. We have a an entry point for unit testing that sets up the data sources....the only way that you call call the SetDataSources from a BO which is more than likely referenced by the entry point assembly (this would cause a circular reference) is to either create an interface that you apply to the AppMain class that just as a SetDataSources method ... or use reflection and invoke the method.
|