aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/injectors/InjectorTest.kt
blob: 76b37afe83cab580254f2fe4cae5e896d2721213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.pitchedapps.frost.injectors

import org.junit.Test

/**
 * Created by Allan Wang on 2017-10-06.
 *
 * Helper to print the injectors for external testing
 */
class InjectorTest {

    @Test
    fun printAll() {
        println("CSS Hider Injectors")
        CssHider.values().forEach {
            println("${it.injector.function}\n")
        }
    }
}