public void ZipTest_FirstEmpty() { TestSubscriber <int> ts = new TestSubscriber <int>(); Flowable.Zip(Flowable.Empty <int>(), Flowable.Just(2), (a, b) => a + b).Subscribe(ts); ts.AssertNoValues() .AssertComplete() .AssertNoError(); }