Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. myProject
  2. └ build.sbt
  3. └ app - this code works perfect
  4. └ modules
  5. └ testModule
  6. └ build.sbt
  7. └ src
  8. └ main
  9. └ scala - here I have simple object Foo with method which returns string
  10. └ test
  11. └ scala - here is Spec2 test for Foo object with JUnitRunner
  12. └ test - here is Spec2 tests for app and these tests also works fine
  13.  
  14. scalaSource in Test <<= baseDirectory / "src" / "test" / "scala"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement