use of org.neo4j.shell.test.bolt.FakeSession in project neo4j by neo4j.
the class BoltStateHandlerTest method setup.
@Before
public void setup() {
when(mockDriver.session(any())).thenReturn(new FakeSession());
doReturn(System.out).when(logger).getOutputStream();
}
Aggregations