From 71f5dc2f7ce5b8183421586e6a77be65040a4dff Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Mon, 1 Jan 2018 23:22:51 -0500 Subject: Format everything and use reified generics --- core/src/androidTest/kotlin/ca/allanwang/kau/xml/ChangelogTest.kt | 2 +- core/src/androidTest/kotlin/ca/allanwang/kau/xml/FaqTest.kt | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'core/src/androidTest/kotlin/ca/allanwang') 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") -- cgit v1.2.3