我試圖用「應該」與邏輯「或」運算符沿功能(例如)如下: def String(x :Integer) :Integer ={
/*----------------
-----------------*/
return value;
}
String.value.size should be (8) || String.value.size should b
首先,我看到它和this other post聽起來完全一樣,除了一件事情,我不能使用fixture.TestDataFixture,因爲我不能擴展fixture.FreeSpecLike,並且我相信一定有一些 (看起來更像這樣的代碼) class MySpec extends FlatSpecLike with fixture.TestDataFixture {
"this techn
我原來的代碼還有很多事情正在進行,這使我從這個問題的真正原因中分心了。 這抓住了基本問題。 import org.scalatest.AsyncFlatSpec
import scala.concurrent.Future
class AsyncFlatSpecSpec extends AsyncFlatSpec
{
it should "parse an XML file" i
我有一個多模塊項目一個測試套件,並通過讀取任務包裝過程中當前運行的測試 - val testALL = taskKey[Unit]("Test ALL Modules")
testALL := {
(test in Test in module_A).value
(test in Test in module_B).value
(test in Test in m