diff options
author | Allan Wang <me@allanwang.ca> | 2018-01-01 23:22:51 -0500 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2018-01-01 23:22:51 -0500 |
commit | 71f5dc2f7ce5b8183421586e6a77be65040a4dff (patch) | |
tree | fedd18e271463ce2430637a9913e8470e84181ce /core/src/androidTest/kotlin/ca | |
parent | f94d6f9694973c2a323e565794d948002593df0a (diff) | |
download | kau-71f5dc2f7ce5b8183421586e6a77be65040a4dff.tar.gz kau-71f5dc2f7ce5b8183421586e6a77be65040a4dff.tar.bz2 kau-71f5dc2f7ce5b8183421586e6a77be65040a4dff.zip |
Format everything and use reified generics
Diffstat (limited to 'core/src/androidTest/kotlin/ca')
-rw-r--r-- | core/src/androidTest/kotlin/ca/allanwang/kau/xml/ChangelogTest.kt | 2 | ||||
-rw-r--r-- | core/src/androidTest/kotlin/ca/allanwang/kau/xml/FaqTest.kt | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/core/src/androidTest/kotlin/ca/allanwang/kau/xml/ChangelogTest.kt b/core/src/androidTest/kotlin/ca/allanwang/kau/xml/ChangelogTest.kt index e3b3170..1a0eaac 100644 --- a/core/src/androidTest/kotlin/ca/allanwang/kau/xml/ChangelogTest.kt +++ b/core/src/androidTest/kotlin/ca/allanwang/kau/xml/ChangelogTest.kt @@ -11,7 +11,7 @@ import org.junit.runner.RunWith @MediumTest class ChangelogTest { -// @Test //todo internal function sharing is only available on gradle 3.0.0+ + // @Test //todo internal function sharing is only available on gradle 3.0.0+ fun simpleTest() { // val data = parse(InstrumentationRegistry.getTargetContext(), R.xml.test_changelog) } diff --git a/core/src/androidTest/kotlin/ca/allanwang/kau/xml/FaqTest.kt b/core/src/androidTest/kotlin/ca/allanwang/kau/xml/FaqTest.kt index 1b185f3..c2ffa8a 100644 --- a/core/src/androidTest/kotlin/ca/allanwang/kau/xml/FaqTest.kt +++ b/core/src/androidTest/kotlin/ca/allanwang/kau/xml/FaqTest.kt @@ -17,8 +17,7 @@ class FaqTest { @Test fun simpleTest() { - InstrumentationRegistry.getTargetContext().kauParseFaq(R.xml.test_faq) { - data -> + InstrumentationRegistry.getTargetContext().kauParseFaq(R.xml.test_faq) { data -> assertEquals(2, data.size, "FAQ size is incorrect") assertEquals("1. This is a question", data.first().first.toString(), "First question does not match") assertEquals("This is an answer", data.first().second.toString(), "First answer does not match") @@ -29,8 +28,7 @@ class FaqTest { @Test fun withoutNumbering() { - InstrumentationRegistry.getTargetContext().kauParseFaq(R.xml.test_faq, false) { - data -> + InstrumentationRegistry.getTargetContext().kauParseFaq(R.xml.test_faq, false) { data -> assertEquals(2, data.size, "FAQ size is incorrect") assertEquals("This is a question", data.first().first.toString(), "First question does not match") assertEquals("This is an answer", data.first().second.toString(), "First answer does not match") |