I have a method that returns a Try
object:
def doSomething(p: SomeParam): Try[Something] = {
// code
}
I now want to test this with ScalaTest. Currently I am doing it like this:
"My try method" should "succeed" in {
val maybeRes = doSomething(SomeParam("foo"))
maybeRes.isSuccess shouldBe true
val res = maybeRes.get
res.bar shouldBe "moo"
}
However checking for isSuccess
to be true
looks a bit clumsy because for Options and Sequences there are things like should be(empty)
and shouldNot be(empty)
. I cannot find anything like should be(successful)
.
Does this exist or is my approach really the way to go?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…