}
private void assertCorrectServerCommand(final Runnable runnable) {
assertThat(runnable, is(ServerCommand.class));
final ServerCommand cmd = (ServerCommand) runnable;
assertThat(cmd.getConfiguration(), is(sameInstance(config)));
assertThat(cmd.getPort(), is(8080));
assertThat(cmd.getGracefulShutdown(), is(true));
assertThat(cmd.getProperties().getProperty(Environment.URL), is("jdbc:hsqldb:mem:ShoreTest"));
}