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

object TestUtil {
	val isInTest =
		Thread.currentThread().stackTrace.any {
			it.className.startsWith("org.junit.") || it.className.startsWith("io.kotest.")
		}
}