Search in sources :

Example 1 with AbstractBsonReader

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();
}
Also used : AbstractBsonReader(org.bson.AbstractBsonReader) Test(org.junit.Test)

Aggregations

AbstractBsonReader (org.bson.AbstractBsonReader)1 Test (org.junit.Test)1