基本的に必要なのは、スケーラテスト プロジェクトで configMap クラスを使用する方法の例です。
- ソースコードで構成値を参照する
- コマンドラインで -Dparametername=value を使用して、Scalatest Runner を使用して Scalatest を実行します。たとえば、
scala -classpath scalatest-<version>.jar org.scalatest.tools.Runner -Dparam1=value1 -p compiled_tests
私は Scalatest 1.6.1 を使用しています。ここの情報http://www.scalatest.org/scaladoc/1.6.1/org/scalatest/Suite.html#configMapSectionはあまり具体的ではなく、configMap の使用方法の例はここにあります。 FixtureSuite では、Scalatest-1.6.1 では動作しないようです
ありがとう〜