aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin/ca
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-10-19 22:57:44 -0700
committerAllan Wang <me@allanwang.ca>2019-10-19 22:57:44 -0700
commitf411167d3a7748bafbd54394e24ee40808faa6be (patch)
treef3c154ebfb28b8f27651ccd9abf2ee35d0b045d3 /core/src/test/kotlin/ca
parentcd93a1205a1f52883593288f0b0a5a5fb05b900b (diff)
downloadkau-f411167d3a7748bafbd54394e24ee40808faa6be.tar.gz
kau-f411167d3a7748bafbd54394e24ee40808faa6be.tar.bz2
kau-f411167d3a7748bafbd54394e24ee40808faa6be.zip
Apply spotless and update changelog
Diffstat (limited to 'core/src/test/kotlin/ca')
-rw-r--r--core/src/test/kotlin/ca/allanwang/kau/kotlin/CoroutineTest.kt4
-rw-r--r--core/src/test/kotlin/ca/allanwang/kau/kotlin/DebounceTest.kt2
-rw-r--r--core/src/test/kotlin/ca/allanwang/kau/kotlin/LazyResettableTest.kt4
-rw-r--r--core/src/test/kotlin/ca/allanwang/kau/kotlin/StreamsTest.kt2
-rw-r--r--core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt2
-rw-r--r--core/src/test/kotlin/ca/allanwang/kau/utils/UtilsTest.kt2
6 files changed, 8 insertions, 8 deletions
diff --git a/core/src/test/kotlin/ca/allanwang/kau/kotlin/CoroutineTest.kt b/core/src/test/kotlin/ca/allanwang/kau/kotlin/CoroutineTest.kt
index 1e86305..6c09a3e 100644
--- a/core/src/test/kotlin/ca/allanwang/kau/kotlin/CoroutineTest.kt
+++ b/core/src/test/kotlin/ca/allanwang/kau/kotlin/CoroutineTest.kt
@@ -15,14 +15,14 @@
*/
package ca.allanwang.kau.kotlin
+import kotlin.test.assertEquals
+import kotlin.test.fail
import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.Job
import kotlinx.coroutines.runBlocking
import kotlinx.coroutines.withContext
import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.fail
/**
* Tests geared towards coroutines
diff --git a/core/src/test/kotlin/ca/allanwang/kau/kotlin/DebounceTest.kt b/core/src/test/kotlin/ca/allanwang/kau/kotlin/DebounceTest.kt
index d43901f..a95c442 100644
--- a/core/src/test/kotlin/ca/allanwang/kau/kotlin/DebounceTest.kt
+++ b/core/src/test/kotlin/ca/allanwang/kau/kotlin/DebounceTest.kt
@@ -15,8 +15,8 @@
*/
package ca.allanwang.kau.kotlin
-import org.junit.Test
import kotlin.test.assertEquals
+import org.junit.Test
/**
* Created by Allan Wang on 2017-08-05.
diff --git a/core/src/test/kotlin/ca/allanwang/kau/kotlin/LazyResettableTest.kt b/core/src/test/kotlin/ca/allanwang/kau/kotlin/LazyResettableTest.kt
index eaaaacb..556979f 100644
--- a/core/src/test/kotlin/ca/allanwang/kau/kotlin/LazyResettableTest.kt
+++ b/core/src/test/kotlin/ca/allanwang/kau/kotlin/LazyResettableTest.kt
@@ -15,10 +15,10 @@
*/
package ca.allanwang.kau.kotlin
-import org.junit.Before
-import org.junit.Test
import kotlin.test.assertEquals
import kotlin.test.assertNotEquals
+import org.junit.Before
+import org.junit.Test
/**
* Created by Allan Wang on 2017-07-29.
diff --git a/core/src/test/kotlin/ca/allanwang/kau/kotlin/StreamsTest.kt b/core/src/test/kotlin/ca/allanwang/kau/kotlin/StreamsTest.kt
index e3d4e5b..f2d7fd6 100644
--- a/core/src/test/kotlin/ca/allanwang/kau/kotlin/StreamsTest.kt
+++ b/core/src/test/kotlin/ca/allanwang/kau/kotlin/StreamsTest.kt
@@ -15,8 +15,8 @@
*/
package ca.allanwang.kau.kotlin
-import org.junit.Test
import kotlin.test.assertEquals
+import org.junit.Test
/**
* Created by Allan Wang on 2017-08-05.
diff --git a/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt b/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt
index 8b99f3c..a7edb05 100644
--- a/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt
+++ b/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt
@@ -15,11 +15,11 @@
*/
package ca.allanwang.kau.ui
-import org.junit.Test
import kotlin.math.min
import kotlin.test.assertEquals
import kotlin.test.assertFalse
import kotlin.test.assertTrue
+import org.junit.Test
class ProgressAnimatorTest {
diff --git a/core/src/test/kotlin/ca/allanwang/kau/utils/UtilsTest.kt b/core/src/test/kotlin/ca/allanwang/kau/utils/UtilsTest.kt
index b9c200a..4aa2f25 100644
--- a/core/src/test/kotlin/ca/allanwang/kau/utils/UtilsTest.kt
+++ b/core/src/test/kotlin/ca/allanwang/kau/utils/UtilsTest.kt
@@ -16,8 +16,8 @@
package ca.allanwang.kau.utils
import android.graphics.Color
-import org.junit.Test
import kotlin.test.assertEquals
+import org.junit.Test
/**
* Created by Allan Wang on 2017-06-23.