Skip to content

Commit 55e73e6

Browse files
committed
[#606] Remove redundant imports
1 parent 52cc9a8 commit 55e73e6

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

sample-compose/app/src/test/java/co/nimblehq/sample/compose/ui/screens/main/home/HomeScreenTest.kt

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import io.kotest.matchers.shouldBe
1818
import io.mockk.*
1919
import kotlinx.coroutines.flow.flow
2020
import kotlinx.coroutines.flow.flowOf
21-
import kotlinx.coroutines.test.*
2221
import org.junit.*
2322
import org.junit.Assert.assertEquals
2423
import org.junit.runner.RunWith

sample-compose/domain/src/test/java/co/nimblehq/sample/compose/domain/usecases/IsFirstTimeLaunchPreferencesUseCaseTest.kt

-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,12 @@ import co.nimblehq.sample.compose.domain.repositories.AppPreferencesRepository
44
import io.kotest.matchers.shouldBe
55
import io.mockk.every
66
import io.mockk.mockk
7-
import kotlinx.coroutines.ExperimentalCoroutinesApi
87
import kotlinx.coroutines.flow.*
98
import kotlinx.coroutines.test.runTest
10-
import org.junit.Assert.*
119

1210
import org.junit.Before
1311
import org.junit.Test
1412

15-
@OptIn(ExperimentalCoroutinesApi::class)
1613
class IsFirstTimeLaunchPreferencesUseCaseTest {
1714

1815
private lateinit var mockAppPreferencesRepository: AppPreferencesRepository

sample-compose/domain/src/test/java/co/nimblehq/sample/compose/domain/usecases/UpdateFirstTimeLaunchPreferencesUseCaseTest.kt

-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ package co.nimblehq.sample.compose.domain.usecases
22

33
import co.nimblehq.sample.compose.domain.repositories.AppPreferencesRepository
44
import io.mockk.*
5-
import kotlinx.coroutines.ExperimentalCoroutinesApi
6-
import kotlinx.coroutines.flow.*
75
import kotlinx.coroutines.test.runTest
8-
import org.junit.Assert.*
96
import org.junit.Before
107
import org.junit.Test
118

12-
@OptIn(ExperimentalCoroutinesApi::class)
139
class UpdateFirstTimeLaunchPreferencesUseCaseTest {
1410

1511
private lateinit var mockAppPreferencesRepository: AppPreferencesRepository

0 commit comments

Comments
 (0)