aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-08-07 23:04:40 -0700
committerGitHub <noreply@github.com>2017-08-07 23:04:40 -0700
commit397cc1f54725aee6fb542b08f965389272469309 (patch)
treed5b7ea8185c0ae9596cdcd0c48cca2586f86a5f7 /app/src/test/kotlin/com
parentab7ec131b62ac1567e983c846c921bd3ada11dd4 (diff)
downloadfrost-397cc1f54725aee6fb542b08f965389272469309.tar.gz
frost-397cc1f54725aee6fb542b08f965389272469309.tar.bz2
frost-397cc1f54725aee6fb542b08f965389272469309.zip
Update/kau (#125)
* Update logger * Clean imports and bring back reactive libs * Update dependencies and make billing async
Diffstat (limited to 'app/src/test/kotlin/com')
-rw-r--r--app/src/test/kotlin/com/pitchedapps/frost/MiscTest.kt8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/src/test/kotlin/com/pitchedapps/frost/MiscTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/MiscTest.kt
index c9d27a1c..91e2149c 100644
--- a/app/src/test/kotlin/com/pitchedapps/frost/MiscTest.kt
+++ b/app/src/test/kotlin/com/pitchedapps/frost/MiscTest.kt
@@ -2,6 +2,7 @@ package com.pitchedapps.frost
import com.pitchedapps.frost.injectors.CssHider
import org.junit.Test
+import kotlin.test.assertEquals
/**
* Created by Allan Wang on 2017-06-14.
@@ -9,7 +10,12 @@ import org.junit.Test
class MiscTest {
@Test
- fun asdf() {
+ fun headerFunction() {
print(CssHider.HEADER.injector.function)
}
+
+ @Test
+ fun nullPair() {
+ assertEquals(Pair<String?, Int>(null, 2), Pair<String?, Int>(null, 2))
+ }
} \ No newline at end of file