broadcast.getSource().event1("param");
}
@Test
public void canUseClosureToReceiveNotificationsForSingleEventMethod() {
final TestClosure testClosure = context.mock(TestClosure.class);
context.checking(new Expectations() {{
one(testClosure).call("param");
will(returnValue("ignore me"));
}});