use of org.bson.AbstractBsonReader in project mongo-java-driver by mongodb.
the class JsonReaderTest method testClosedState.
@Test(expected = IllegalStateException.class)
public void testClosedState() {
final AbstractBsonReader bsonReader = new JsonReader("");
bsonReader.close();
bsonReader.readBinaryData();
}
Aggregations