Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 syntax works fine when trying to capture an Int.

Here's an example test:

import org.scalatest.FunSuite
import org.scalatest.mock.MockitoSugar
import org.mockito.Mockito._
import org.mockito.ArgumentCaptor

trait MockedTrait {
    def mockedDoubleMethod(double: Double)
    def mockedIntegerMethod(integer: Int)
}

class ClassUnderTest(myTrait: MockedTrait) {
    def methodUnderTest {
        myTrait.mockedIntegerMethod(3)
        myTrait.mockedDoubleMethod(5.0)
    }
}

class MyTest extends FunSuite with MockitoSugar {

    test("A basic test") {
        val myTrait = mock[MockedTrait]

        val classUnderTest = new ClassUnderTest(myTrait)
        classUnderTest.methodUnderTest

        val capturedInteger = ArgumentCaptor.forClass(classOf[Int])
        verify(myTrait).mockedIntegerMethod(capturedInteger.capture)

        val capturedDouble = ArgumentCaptor.forClass(classOf[Double])
        verify(myTrait).mockedDoubleMethod(capturedDouble.capture) // Throws ClassCastException
    }

}

I get the following exception:

java.lang.Integer cannot be cast to java.lang.Double
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Double
    at scala.runtime.BoxesRunTime.unboxToDouble(Unknown Source)
    at MyTest$$anonfun$1.apply$mcV$sp(MyTest.scala:30)
    at MyTest$$anonfun$1.apply(MyTest.scala:20)
    at MyTest$$anonfun$1.apply(MyTest.scala:20)
    at org.scalatest.FunSuite$$anon$1.apply(FunSuite.scala:1265)
    at org.scalatest.Suite$class.withFixture(Suite.scala:1968)
    at MyTest.withFixture(MyTest.scala:18)

Any suggestions?

share|improve this question

1 Answer

I had similar problem. This should fix it I believe:

val capturedDouble = ArgumentCaptor.forClass(classOf[java.lang.Double])
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.