Scalatest ExecutionContext
Asked Answered
R

1

10

I would like to know which ExecutionContext I should use (and why) on scalatest % 2.2.6 to run my futures and mock's futures.

class Foo {
   def foo: Future[String] = Future.sucessful("B")
}

class Bar(foo: Foo) {
   def bar: Future[String] = foo.foo()
}

class MyTest extends WordSpec {

  implicit val ec: ExecutionContext = ??? // ...global? Why global? Why not?

  val myMock = mock[Foo]
  val myBar = new Bar(myMock)

  "..." in {
    (myMock.foo _).expects(*).returning(Future.succesful("A"))
    whenReady(myBar.bar())(_ shouldBe "A")
  }
}
Ropedancer answered 16/11, 2016 at 18:52 Comment(0)
R
7

Just import scala.concurrent.ExecutionContext.Implicits.global and this will load the default ExecutionContext for the Future objects in your tests to work properly.

NOTE: For using Futures on tests is OK the global implicits. For real projects consider to use ExecutionContext per case.

Reptilian answered 22/1, 2018 at 5:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.