Created
December 11, 2012 10:06
-
-
Save jmaicher/4257510 to your computer and use it in GitHub Desktop.
Unit testing anonymous inner classes as event listener
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Unit { | |
| public Unit(EventDispatcher dispatcher) { | |
| dispatcher.addHandler(MyEvent.class, new IEventHandler() { | |
| public void onEvent(MyEvent event) { | |
| // some behavior | |
| } | |
| }); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class UnitTest { | |
| @Test | |
| public void whenDispatcherTriggersMyEventThenIExpectBehaviour() { | |
| EventDispatcher mockedDispatcher = mock(EventDispatcher.class); | |
| new Unit(mockedDispatcher); | |
| ArgumentCaptor<IEventHandler> myEventHandlerCaptor = ArgumentCaptor.forClass(IEventHandler.class); | |
| verify(mockedDispatcher).addHandler(eq(MyEvent.class), myEventHandlerCaptor.capture()); | |
| IEventHandler myEventHandler = myEventHandlerCaptor.getValue(); | |
| MyEvent mockedEvent = mock(MyEvent.class); | |
| myEventHandler.onEvent(mockedEvent); | |
| // verify behavior | |
| } | |
| } |
Author
Let's put 1, 3 and 4 aside, they doesn't matter at all right now.
I made up this example and quickly wrote it in the textarea to show some concrete testworthy behavior. Let's exchange ConnectionManager with ServerMonitor and say it needs to display current connections to the user. The pattern doesn't change.
Its all about naming things ;-) #ServerObserver
@jmaicher
thanks man,this one helped me ..
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ConnectionManager? Whenever aConnectionEventgets issued by thisServerinstance, theConnectionManagerinstance tracks the events connection? To me it is unclear, why theConnectionManageris configuring theServerat all. Maybe it should be calledServerConfigurator. About Managers: http://c2.com/cgi/wiki?DontNameClassesObjectManagerHandlerOrDataorg.jmaicher.connection;. You don't want to have asrc/main/java/connection_managerdirectory, do you?