Renamed two akka-camel tests from *Spec to *Test

This commit is contained in:
Martin Krasser 2010-09-24 10:40:46 +02:00
parent f5a37670dd
commit cc80abf79b
2 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ import se.scalablesolutions.akka.actor.ActorRegistry
/**
* @author Martin Krasser
*/
class CamelServiceManagerSpec extends WordSpec with BeforeAndAfterAll with MustMatchers {
class CamelServiceManagerTest extends WordSpec with BeforeAndAfterAll with MustMatchers {
override def afterAll = ActorRegistry.shutdownAll

View file

@ -13,9 +13,9 @@ import se.scalablesolutions.akka.actor._
/**
* @author Martin Krasser
*/
class ConsumerSpec extends WordSpec with BeforeAndAfterAll with MustMatchers {
class ConsumerTest extends WordSpec with BeforeAndAfterAll with MustMatchers {
import CamelContextManager.template
import ConsumerSpec._
import ConsumerTest._
var service: CamelService = _
@ -174,7 +174,7 @@ class ConsumerSpec extends WordSpec with BeforeAndAfterAll with MustMatchers {
}
}
object ConsumerSpec {
object ConsumerTest {
class TestConsumer(uri: String) extends Actor with Consumer {
def endpointUri = uri
protected def receive = {