简体   繁体   中英

How to check if sbt in test context?

How can an application tell if it's running under an 'sbt test' context? Is there a system property that can be checked?

There are probably different ways. I found the following works:

testOptions += Tests.Setup(_ => sys.props("testing") = "true")

And then you can just test for sys.props.get("testing") in your class.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM