Re: writing tests for my program

2016-05-10 Thread Igor Berman
programs. > > Best, > Alex > > > > > > -- > View this message in context: > http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/writing-tests-for-my-program-tp6784p6801.html > Sent from the Apache Flink User Mailing List archive. mailing list archive > at Nabble.com. >

Re: writing tests for my program

2016-05-10 Thread lofifnc
/writing-tests-for-my-program-tp6784p6801.html Sent from the Apache Flink User Mailing List archive. mailing list archive at Nabble.com.

Re: writing tests for my program

2016-05-09 Thread Igor Berman
answering my own question: testing streaming environment should be done with StreamingProgramTestBase & TestStreamEnvironment which are present in test package of flink-streaming-java project so it's not directly available? Project owners, why not to move above two to flink-test-utils? Or I don't

writing tests for my program

2016-05-09 Thread Igor Berman
Any idea how to handle following(the message is clear, but I'm not sure what I need to do) I'm opening "generic" environment in my code (StreamExecutionEnvironment.getExecutionEnvironment()) and JavaProgramTestBase configures TestEnvironment... so what I should do to support custom tests? Erro