You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of ArrayExpectation.never does nothing, creating a new BoundExpectation object that is immediately discarded and returning this unchanged. Because of this, the expectation conditions are not reversed.
The proper implementation should presumably be
return new ArrayExpectation<>(objectUnderTest, !positive);
The text was updated successfully, but these errors were encountered:
The current implementation of
ArrayExpectation.never
does nothing, creating a newBoundExpectation
object that is immediately discarded and returningthis
unchanged. Because of this, the expectation conditions are not reversed.The proper implementation should presumably be
return new ArrayExpectation<>(objectUnderTest, !positive);
The text was updated successfully, but these errors were encountered: