Test handleChange / handleAdd / etc code

Although there is no way to enforce testing of any coding in any of the methods


HandleRegisteredChange
     (BusinessEntity changedBusinessEntity,
      RegisteredChangeDetail changeDetail)

handleAdd(BusinessEntity newBusinessEntity)

handleChange(BusinessEntity changedEntity, DataTransferObject oldDTO)

It is still imperative that this code should also be exercised AND verified when testing the change handler. Please ensure that every path through these methods is exercised and the results verified.

In general, there is a specific set of classes or functionality that is required to have explicitly defined tests.

Note: Currently, the above "must have" tests may still not completely cover all the cases. For example, one search type may have several inputs, which trigger different code or queries to be executed. The testing FW as is can not know this, so only requires a single test case for that search type. However, it is strongly recommended that each specialized case possible be modeled with a test case, in order to achieve complete code coverage.
Note: In addition, there is a desire to assure that each business component or business entity method has been tested. Currently these tests are not required. However, after a complete build server run, any business component methods or business entity methods that have not been explicitly tested will be reported.