mockito 1.0.0 mockito: ^1.0.0 copied to clipboard
A mock framework inspired by Mockito.
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