I know scala has scalatest, specs2 framework to support unit test/functional test written and put the specification under its tree hierarchy. However, most of the time for a project written in scala, functional tests are not authored in scala too. We actually used SoapUI authoring test suites. It's actually a xml files run by SoapUI test runner. Is there any way to put this sorts of things under scala tree?
I'm asking this because I want to leverage certain scala code coverage tool which only supports running tests under scala hierarchy.
Thanks!