I know i can tag a test using the taggedAs
method (I'm using FlatSpec
right now) like this:
\/\/\/\/\/\/\/\/\/
it should "not deadlock" taggedAs SlowTest in {
Par.run(Executors.newFixedThreadPool(2))(Par.parMap(List.range(1, 100000))(math.sqrt(_)))
}
But I'd like to know whether i can tag a lot of tests all at once
something like:
taggedAs (SlowTest) { // yes this doesn't work, I've tried it.
//a bunch-o-tests
}