assertEquals(expectedMaxList0, MockInvokable.createAndExecute(
new StreamReduceInvokable<Integer>(maxFunction0), simpleInput));
StreamExecutionEnvironment env = StreamExecutionEnvironment.createLocalEnvironment();
try {
env.generateSequence(1, 100).min(1);
fail();
} catch (Exception e) {
// Nothing to do here
}
try {