create akka-testkit subproject

- modify AkkaProject.scala
- move CallingThreadDispatcher & Spec and TestKit into akka-testkit
- update FSMTimingSpec accordingly
This commit is contained in:
Roland Kuhn 2011-03-05 14:36:08 +01:00
parent 872c44c35e
commit 50b2c14235
6 changed files with 29 additions and 8 deletions

View file

@ -0,0 +1,11 @@
package akka.testkit
import akka.actor.dispatch.ActorModelSpec
class CallingThreadDispatcherTest extends ActorModelSpec {
import ActorModelSpec._
def newInterceptedDispatcher = new CallingThreadDispatcher with MessageDispatcherInterceptor
override def dispatcherShouldProcessMessagesInParallel {}
}
// vim: set ts=4 sw=4 et: