aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/TestUtil.kt
blob: 45e3dde4111039248adb4d091575fdfd15b9eacb (plain)
1
2
3
4
5
6
7
8
9
package moe.nea.firmament.util

object TestUtil {
	inline fun <T> unlessTesting(block: () -> T): T? = if (isInTest) null else block()
	val isInTest =
		Thread.currentThread().stackTrace.any {
			it.className.startsWith("org.junit.") || it.className.startsWith("io.kotest.")
		}
}