I have a method that returns a Try object:
Try
def doSomething(p: SomeParam): Try[Something] = { // code }
I now want to test th
Alternatively
import org.scalatest.TryValues._ // ... maybeRes.success.value should be "moo"