@Test
public void testRunCommandNameStringValueOptions() throws ExecutionException, InterruptedException {
new Fiber<Void>(new SuspendableRunnable() {
@Override
public void run() throws SuspendExecution, InterruptedException {
Document res = mongoDb.runCommand("ping", "1", null);
assertEquals("1.0", res.get("ok").getValueAsString());
}
}).start().join();
}