thiloplanz / jmockmongo

Fake in-process (Java), in-memory MongoDB for unit testing
Apache License 2.0
35 stars 5 forks source link

Implementing Status Command #2

Closed lordofthejars closed 12 years ago

lordofthejars commented 12 years ago

Sometimes querying about the status of the server is required. In that cases, using Java Mongo API, it is done by:

CommandResult stats = db.getStats();

But jmockmongo does not support this command.

I think that this is not a "must have" operation but if you could implement would be amazing.