aboutsummaryrefslogtreecommitdiff
path: root/tests/src/test/kotlin/test/TestBase.kt
blob: 95c76eceee0bc6dc7e58e8c7eff6327e5d6fcd14 (plain)
1
2
3
4
5
6
7
8
9
10
11
package test

import org.junit.After

abstract class TestBase {

    @After
    open fun tearDown() {
        mockMakerInlineEnabled = null
    }
}