1) please check multiJvmMarker in MultiJvm
I have multiJvmMarker in MultiJvm := "_j"
So tests without suffix _j not executed
2) please check definedTests in MultiJvm
I have, for example, definedTests in MultiJvm <<= definedTests in Test
You should see something like
> show multi-jvm:defined-tests [info] List(Test org.digimead.digi.lib.rudp.RUDPTest_j1 : subclass(false, org.scalatest.Suite), Test org.digimead.digi.lib.rudp.RUDPTest_j2 : subclass(false, org.scalatest.Suite)
Did your test start with test-only ? In fact, I can start with
multi-jvm:test-only org.digimead.digi.lib.rudp.RUDPTest
Note the suffix _j . In your case, this may be different.
Updated:
An example is a simple client / server test that uses MultiJVM: RUDPTest
source share