Scalariform & add AkkaSpec

This commit is contained in:
Roland 2011-10-10 11:12:34 +02:00
parent 67a9a01bff
commit 2599de0381
6 changed files with 19 additions and 13 deletions

View file

@ -0,0 +1,13 @@
/**
* Copyright (C) 2009-2011 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.testkit
import org.scalatest.WordSpec
import org.scalatest.matchers.MustMatchers
import akka.AkkaApplication
abstract class AkkaSpec(_application: AkkaApplication = AkkaApplication())
extends TestKit(_application) with WordSpec with MustMatchers {
}