aboutsummaryrefslogtreecommitdiff
path: root/core/src/androidTest/kotlin/ca/allanwang/kau/xml/ChangelogTest.kt
blob: dcff70eca3424f7a6f0dd8e5e5175b41146c0ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package ca.allanwang.kau.xml

import android.support.test.InstrumentationRegistry
import android.support.test.filters.MediumTest
import android.support.test.runner.AndroidJUnit4
import ca.allanwang.kau.test.R
import org.junit.Test
import org.junit.runner.RunWith

/**
 * Created by Allan Wang on 2017-07-31.
 */
@RunWith(AndroidJUnit4::class)
@MediumTest
class ChangelogTest {

    @Test
    fun simpleTest() {
        val data = parse(InstrumentationRegistry.getTargetContext(), R.xml.text_changelog)
    }

}