19 lines
290 B
Scala
Executable file
19 lines
290 B
Scala
Executable file
/**
|
|
* Copyright (C) 2009 Scalable Solutions.
|
|
*/
|
|
|
|
package se.scalablesolutions.akka.kernel
|
|
|
|
import org.scalatest._
|
|
|
|
/**
|
|
* @author <a href="http://jonasboner.com">Jonas Bonér</a>
|
|
*/
|
|
class AllSuite extends SuperSuite(
|
|
List(
|
|
new ActiveObjectSpec,
|
|
new RestManagerSpec
|
|
)
|
|
)
|
|
|
|
|