| 43 | }; |
| 44 | |
| 45 | class EventComparator : public MockNamedValueComparator |
| 46 | { |
| 47 | public: |
| 48 | virtual bool isEqual(const void* object1, const void* object2) |
| 49 | { |
| 50 | return ((const Event*)object1)->type == ((const Event*)object2)->type; |
| 51 | } |
| 52 | virtual SimpleString valueToString(const void* object) |
| 53 | { |
| 54 | return StringFrom(((const Event*)object)->type); |
| 55 | } |
| 56 | }; |
| 57 | |
| 58 | |
| 59 | TEST_GROUP(EventDispatcher) |
nothing calls this directly
no outgoing calls
no test coverage detected