Changes between Version 181 and Version 182 of j2p


Ignore:
Timestamp:
01/10/25 16:50:15 (3 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • j2p

    v181 v182  
    560560||I get an {{{UnsupportedOperationException}}} inside javaparser LambdaExprContext||Javaparser seems to sometimes have trouble with resolving argument types inside lambda expressions. Try explicitly typing the left side of your lambda expression||
    561561||I get {{{mockito.invocation.InvocationError: You tried to stub a method __len__ the object (<class 'mockito.mocking.mock.<locals>.Dummy'>) doesn't have.}}} ||Python typing around the built-in types (list, set, str, repr) is messy. If you stub a java List/Set, it translates to mock(typing.List/typing.Set). And those types do not have {{{___len___}}} causing the error.
    562 In these special cases you need to use mock(list)/mock(set). Try manual translation of these types.
    563 For example to mock {{{__repr__}}} you need {{{when2(myobj.__repr__).thenReturn("xx")}}}||
     562In these special cases you need to use mock(list)/mock(set). Try manual translation of these types. For example to mock {{{__repr__}}} you need {{{when2(myobj.__repr__).thenReturn("xx")}}}||
    564563||I'm getting {{{TypeError: missing a required argument}}} at runtime on an overloaded mockito mock call||python mockito and plum dispatch don't work together||It is easiest to work around the overloading. Change one of the overloaded method names.||
    565564||Mockito is complaining {{{AttributeError: 'Dummy' has no attribute 'xxx' configured}}}||python mockito does not automatically mock method calls and fields with null. You have to explicitly mock them||