in reply to Fine line between integration testing and unit testing
Unit testing usually refers to testing single functions or methods, while integration testing tests the compatibility among functions, methods, classes, components, etc. In practice, the distinction between unit and integration testing is blurry. For instance, a method may invoke private helper functions not accessible in the public API.
So the distinction in between unit and integration testing is not as important as testing at all levels. Start with the smallest logical units of testing, such as functions or even assertions within functions. Then work your way up the chain as you write more code.
In the context of your problem, it would make sense to mock the return value at first to test the business entities alone. Then test the data access modules with DBD::Mock, and then perform integration testing between the business entity and data access modules.
-Mark
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Fine line between integration testing and unit testing
by badaiaqrandista (Pilgrim) on May 10, 2006 at 06:52 UTC |