aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/MiscTest.kt
blob: 91e2149c2f73bca7cccd1adaa0099e9aa5e0471f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.
 */
class MiscTest {

    @Test
    fun headerFunction() {
        print(CssHider.HEADER.injector.function)
    }

    @Test
    fun nullPair() {
        assertEquals(Pair<String?, Int>(null, 2), Pair<String?, Int>(null, 2))
    }
}