_context.getComponent("timer", TimerComponent.class).stop();
}
@Test
public void shouldStoreGreet() throws Exception {
invoker.operation("store").sendInOnly(new Greeting(RECEIVER, SENDER));
ResultSet result = connection.createStatement().executeQuery("SELECT * FROM greetings");
assertTrue(result.next());
assertEquals(RECEIVER, result.getString("receiver"));
assertEquals(SENDER, result.getString("sender"));