Code Monkey home page Code Monkey logo

Comments (3)

etorreborre avatar etorreborre commented on June 3, 2024 1

There is a workaround

trait NoArgThat extends Mockito {
    override def argThat[T, U <: T](m: org.specs2.matcher.Matcher[U]): T =
      super.argThat(m)
}

If you mix-in that trait, it should deactivate the argThat conversion. But then you lose the implicit conversion and you have to explicitly use argThat when using a matcher on mock calls.

from specs2.

etorreborre avatar etorreborre commented on June 3, 2024

Hi @nespera. That's an interesting corner case with implicit conversions. haveSize accepts both an Int and a ValueCheck[T]. Then there are 2 possible implicit conversions to go from Matcher[T] to Int (in ArgThat) and Matcher[T] to ValueCheck[T] (in org.specs2.matcher.ValueCheck).

Unfortunately it seems that one of the two conversions has to give. I couldn't find a way to make both work at the same time.
One solution is to use the ArgThat object in a specific scope, just where needed:

{
  import ArgThat._
  val myMock = mock[MyClass]
  myMock.executeMethod(greaterThan(1))
}

items must haveSize(greaterThan(1000))

from specs2.

nespera avatar nespera commented on June 3, 2024

Yes, I thought this might be difficult to fix. It is definitely a corner case, but one that confused me when I found it. In practice it's hard to avoid ArgThat if you're using the classes in org.specs2.mock. For example the trait org.specs2.mock.Mockito includes it via 3 different routes...

from specs2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.