mockito 3.0.0-alpha+4 mockito: ^3.0.0-alpha+4 copied to clipboard
A mock framework inspired by Mockito.
3.0.0-alpha+4 #
- Introduce a backward-and-forward compatible API to help users migrate to Mockito 3. See more details in the upgrading-to-mockito-3 doc.
3.0.0-alpha+3 #
thenReturn
andthenAnswer
now support generics and infer the correct types from thewhen
call.- Completely remove the mirrors implementation of Mockito (
mirrors.dart
).
3.0.0-alpha+2 #
- Support stubbing of void methods in Dart 2.
3.0.0-alpha #
thenReturn
now throws anArgumentError
if either aFuture
orStream
is provided.thenReturn
calls with futures and streams should be changed tothenAnswer
. See the README for more information.
2.2.0 #
- Add new feature to wait for an interaction:
untilCalled
. See the README for documentation.
2.1.0 #
- Add documentation for
when
,verify
,verifyNever
,resetMockitoState
. - Expose
throwOnMissingStub
,resetMockitoState
. - Improve failure message for
verify
. - SDK version ceiling bumped to
<2.0.0-dev.infinity
to support Dart 2.0 development testing. - Add a Mockito + test package example at
test/example/iss
.
2.0.2 #
- Start using the new
InvocationMatcher
instead of the old matcher. - Change
throwOnMissingStub
back to invokingObject.noSuchMethod
:- It was never documented what the thrown type should be expected as.
- You can now just rely on
throwsNoSuchMethodError
if you want to catch it.
2.0.1 #
- Add a new
throwOnMissingStub
method to the API.
2.0.0 #
- Removed
mockito_no_mirrors.dart
2.0.0-dev #
- Remove export of
spy
and anydart:mirrors
based API frommockito.dart
. Users may import aspackage:mockito/mirrors.dart
going forward. - Deprecated
mockito_no_mirrors.dart
; replace withmockito.dart
. - Require Dart SDK
>=1.21.0 <2.0.0
to use generic methods.
1.0.1 #
- Add a new
thenThrow
method to the API. - Document
thenAnswer
in the README. - Add more dartdoc.
1.0.0 #
- Add a new
typed
API that is compatible with Dart Dev Compiler; documented in README.md.
0.11.1 #
- Move the reflection-based
spy
code into a private source file. Nowpackage:mockito/mockito.dart
includes this reflection-based API, and a newpackage:mockito/mockito_no_mirrors.dart
doesn't require mirrors.
0.11.0 #
- Equality matcher used by default to simplify matching collections as arguments. Should be non-breaking change in most cases, otherwise consider using
argThat(identical(arg))
.
0.10.0 #
- Added support for spy.
0.9.0 #
- Migrate from the unittest package to use the new test package.
- Format code using dartformat