Created
June 9, 2021 12:34
-
-
Save debasishg/2191bf510c713bc0f6ac2cf1dad2246e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.scalatest._ | |
import org.scalatest.concurrent.ScalaFutures | |
import scala.concurrent.Future | |
// from https://github.com/d6y/scalatest-future-failure/blob/master/src/test/scala/example.scala | |
class ExampleSpec extends FlatSpec with Matchers with ScalaFutures { | |
sealed trait Boom extends Throwable | |
final case class ExampleFail() extends Boom | |
def example: Future[Int] = Future.failed(ExampleFail()) | |
// Three tricks here: | |
// 1. Using whenReady to await for the future | |
// 2. Using .failed to access the failed exception | |
// 3. If there's no failure, scalatest will catch NoSuchElement exception from the Future | |
"A future" should "be able to fail" in { | |
whenReady(example.failed) { e => | |
e shouldBe an [ExampleFail] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment