When unit-testing a component, the following question occured to me:
There are a number of mouse-related event handlers. I see two possibilties to test these handlers:
- Simulate mouse events using Windows API calls.
- Use the protected hack to access protected event handlers and call them directly.
I know that unit testing is normally restricted to the interface of a class (which also means that tests don't have to be changed when class internals change), but is this scenario worth an exception?
How do you usually handle mouse events when unit-testing components?
TActionManager.OnUpdatecode has not executed yet and some UI elements are not in their intended state. Fast-clicking/typing users can (and will) run into these problems. – mjn Feb 8 '11 at 17:58