1 /* 2 * Copyright 2021 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.google.accompanist.insets 18 19 import org.junit.Test 20 import org.junit.runner.RunWith 21 import org.junit.runners.JUnit4 22 23 /** 24 * Fake tests to help with sharding: https://github.com/android/android-test/issues/973 25 */ 26 @RunWith(JUnit4::class) 27 class FakeTests { 28 @Test fake1null29 fun fake1() = Unit 30 31 @Test 32 fun fake2() = Unit 33 34 @Test 35 fun fake3() = Unit 36 37 @Test 38 fun fake4() = Unit 39 40 @Test 41 fun fake5() = Unit 42 43 @Test 44 fun fake6() = Unit 45 46 @Test 47 fun fake7() = Unit 48 49 @Test 50 fun fake8() = Unit 51 52 @Test 53 fun fake9() = Unit 54 55 @Test 56 fun fake10() = Unit 57 } 58