0
在http://www.artima.com/weblogs/viewpost.jsp?thread=246279我發現以下斷言應該工作:字符串包括不與ScalaTest匹配器括號斷言
string should startWith substring "Hello"
string should endWith substring "world"
string should include substring "seven"
然而,這並不編譯
Error:(15, 29) value substring is not a member of MyTest.this.ResultOfStartWithWordForString
string should startWith substring "Hello"
是否有可能寫字符串包含斷言而不使用括號?
你的問題不是'include',問題是'substring',你可以在錯誤信息中看到,它失敗的第一個斷言已經。我認爲你必須使用'字符串應該startWith子字符串(「你好」)等 –
括號我得到同樣的錯誤,它並沒有幫助 –