aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/injectors/InjectorTest.kt
blob: 9da4f33f2be333c5b722dedde68c13be112cbe72 (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 {

    private fun JsInjector.print()
            = println(function)

    @Test
    fun printAdHider() {
        CssHider.ADS.injector.print()
    }
}