|
| 1 | +/** |
| 2 | + * Copyright 2016 Netflix, Inc. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in |
| 5 | + * compliance with the License. You may obtain a copy of the License at |
| 6 | + * |
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + * |
| 9 | + * Unless required by applicable law or agreed to in writing, software distributed under the License is |
| 10 | + * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See |
| 11 | + * the License for the specific language governing permissions and limitations under the License. |
| 12 | + */ |
| 13 | + |
| 14 | +package io.reactivex.single; |
| 15 | + |
| 16 | +import org.junit.Test; |
| 17 | + |
| 18 | +import java.util.concurrent.TimeUnit; |
| 19 | +import java.util.concurrent.atomic.AtomicLong; |
| 20 | + |
| 21 | +import io.reactivex.Single; |
| 22 | +import io.reactivex.functions.Consumer; |
| 23 | +import io.reactivex.schedulers.TestScheduler; |
| 24 | + |
| 25 | +import static org.junit.Assert.assertEquals; |
| 26 | + |
| 27 | +public class SingleTimerTest { |
| 28 | + @Test |
| 29 | + public void timer() { |
| 30 | + final TestScheduler testScheduler = new TestScheduler(); |
| 31 | + |
| 32 | + final AtomicLong atomicLong = new AtomicLong(); |
| 33 | + Single.timer(2, TimeUnit.SECONDS, testScheduler).subscribe(new Consumer<Long>() { |
| 34 | + @Override |
| 35 | + public void accept(final Long value) throws Exception { |
| 36 | + atomicLong.incrementAndGet(); |
| 37 | + } |
| 38 | + }); |
| 39 | + |
| 40 | + assertEquals(0, atomicLong.get()); |
| 41 | + |
| 42 | + testScheduler.advanceTimeBy(1, TimeUnit.SECONDS); |
| 43 | + |
| 44 | + assertEquals(0, atomicLong.get()); |
| 45 | + |
| 46 | + testScheduler.advanceTimeBy(1, TimeUnit.SECONDS); |
| 47 | + |
| 48 | + assertEquals(1, atomicLong.get()); |
| 49 | + } |
| 50 | +} |
0 commit comments