我正在使用scalatest。問題是測試報告很難閱讀。測試名稱已用$u0020
,:
和$colon
等替換了空格。
例如在:
def `test: find '.gitignore' file on disk` = {
//...
}
...在報告會看起來像:
test$colon$u0020find$u0020$u0027$u002Egitignore$u0027$u0020file$u0020on$u0020disk
如何預防呢?斯卡拉的
版本和scalatests是:
libraryDependencies += "org.scalatest" % "scalatest_2.10.0-M7" % "1.9-2.10.0-M7-B1" % "test"
scalaVersion := "2.10.0-M7"
編輯
線索。我認爲在幕後它使用Thread.currentThread().getStackTrace()(depth)
。
什麼樣的報告?萬無一失? CI服務器?聲納? –
我的意思是出現在控制檯上的標準輸出。 –