I\'m having a problem using ArgumentCapture for a Double in scala. I\'m trying to capture a Double argument to a mocked trait. The same sy
ArgumentCapture
Double
I had similar problem. This should fix it I believe:
val capturedDouble = ArgumentCaptor.forClass(classOf[java.lang.Double])