Ejemplo n.º 1
0
        public void ZipTest_SameLength()
        {
            TestSubscriber <int> ts = new TestSubscriber <int>();

            Flowable.Zip(Flowable.Just(1), Flowable.Just(2), (a, b) => a + b).Subscribe(ts);

            ts.AssertValue(3)
            .AssertComplete()
            .AssertNoError();
        }