Skip to content

Commit 5b664b3

Browse files
committed
Add coverage of the holder class
1 parent fdf8010 commit 5b664b3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright (c) 2016-present, RxJava Contributors.
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.rxjava3.internal.schedulers;
15+
16+
import static org.junit.Assert.assertNotNull;
17+
18+
import org.junit.Test;
19+
20+
public class ExecutorSchedulerInternalTest {
21+
22+
@Test
23+
public void helperHolder() {
24+
assertNotNull(new ExecutorScheduler.SingleHolder());
25+
}
26+
27+
}

0 commit comments

Comments
 (0)