Is there a way to run a function before the tests get started?
For example:
object KkConsumerSpec extends Properties("Consumer") {
//Some preparation work here!!!!
property("startsWith") = forAll { (a: String, b: String) =>
(a+b).startsWith(a)
}
}
I want to run some functions before the test startsWith
starts.