
My previous article covered how to create a Unit Test for a DotNetNuke Private Assembly Module. This is an extension to that article, and covers hooking up Data Driven unit testing. Data Driven unit testing involves using an External Data Source to feed test data into your Unit Tests, so that many different data values and combinations can be run through a single piece of unit test code.
Data Driven unit tests are far superior in that they can provide much better test coverage than 'hard coded' single unit tests. This is particularly useful for checking data bounds on storage types, such as string lengths, numeric types and other vital sy..
|