public class EventExecutionCommandTest extends ClientCommandTestCase
{
@Test
public void testExecute() {
final Domain theTestDomain = DomainFactory.getDomain("test_domain");
final Event theTestEvent = new DummyEvent();
getRemoteEventConnectorMock().sendEvent(theTestDomain, theTestEvent, getCommandCallback());
testExecute(new EventExecutionCommand(getRemoteEventConnectorMock(), theTestDomain, theTestEvent, getCommandCallback()));
}