Re: Testing CoFlatMap correctness

2017-12-12 Thread Fabian Hueske
; predictable, and that elements from main stream arrive after elements from > control stream, or other way around. > > > > Thanks again, > > Tovi > > > > *From:* Kostas Kloudas [mailto:k.klou...@data-artisans.com] > *Sent:* יום ה 07 דצמבר 2017 19:11 > *To:

RE: Testing CoFlatMap correctness

2017-12-10 Thread Sofer, Tovi
@flink.apache.org Subject: Re: Testing CoFlatMap correctness Hi Tovi, What you need is the TwoInputStreamOperatorTestHarness. This will allow you to do something like: TwoInputStreamOperatorTestHarness testHarness = new TwoInputStreamOperatorTestHarness<>(myoperator); testHarness

Re: Testing CoFlatMap correctness

2017-12-07 Thread Kostas Kloudas
Hi Tovi, What you need is the TwoInputStreamOperatorTestHarness. This will allow you to do something like: TwoInputStreamOperatorTestHarness testHarness = new TwoInputStreamOperatorTestHarness<>(myoperator); testHarness.setup(); testHarness.open(); testHarness.processWatermark1(new Water