I\'m trying to make sense of the error(s) I\'m seeing below, and to learn how to fix it.
could not find implicit value for parameter materializer: akka.Stream.M
You can create an implicit ActorMaterializer
within your test class which will use testkit's ActorSystem
:
import akka.testkit.TestKit
import akka.actor.ActorSystem
class TestJmlPlay(_system : ActorSystem) extends TestKit(_system) ... {
implicit val materializer: ActorMaterializer = ActorMaterializer()
val bbox = ...