use of org.neo4j.shell.ParameterMap in project neo4j by neo4j.
the class ParamsTest method setup.
@Before
public void setup() throws CommandException {
vars = new HashMap<>();
logger = mock(Logger.class);
ParameterMap shell = mock(ParameterMap.class);
when(shell.getAllAsUserInput()).thenReturn(vars);
cmd = new Params(logger, shell);
}
Aggregations