-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from thso/cleanup
Tighten public API + cleanup
- Loading branch information
Showing
5 changed files
with
72 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export 'src/mock.dart' hide setDefaultResponse; | ||
export 'src/spy.dart'; | ||
export 'mockito_no_mirrors.dart'; | ||
export 'src/spy.dart' show spy; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
export 'src/mock.dart' hide setDefaultResponse; | ||
export 'src/mock.dart' | ||
show | ||
Mock, | ||
named, | ||
|
||
// -- setting behaviour | ||
when, | ||
any, | ||
argThat, | ||
captureAny, | ||
captureThat, | ||
typed, | ||
Answering, | ||
Expectation, | ||
PostExpectation, | ||
|
||
// -- verification | ||
verify, | ||
verifyInOrder, | ||
verifyNever, | ||
verifyNoMoreInteractions, | ||
verifyZeroInteractions, | ||
VerificationResult, | ||
Verification, | ||
|
||
// -- misc | ||
clearInteractions, | ||
reset, | ||
logInvocations; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: mockito | ||
version: 1.0.1+2 | ||
version: 2.0.0-dev | ||
authors: | ||
- Dmitriy Fibulwinter <[email protected]> | ||
- Ted Sander <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters