标签: scala concurrency parallel-processing scalatest
我想在测试中加快速度。
listOfUrls.map(url => { "call the url" should "return 200" in { requesting page and check for HTTP-Code } }
问题在于这种方法是按顺序进行的。 scalatest / scala是否可以为该映射使用并行性?例如:每2秒请求一次页面吗?还是使用指定数量的线程?