Mockito: Difference between revisions
Jump to navigation
Jump to search
Line 15: | Line 15: | ||
<syntaxhighlight lang='groovy'> | <syntaxhighlight lang='groovy'> | ||
dependencies { | dependencies { | ||
testImplementation 'org.mockito:mockito-core:3.11.2' | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 03:14, 16 July 2021
External
- http://site.mockito.org
- https://github.com/mockito/mockito/wiki
- https://www.baeldung.com/mockito-series
- https://www.vogella.com/tutorials/Mockito/article.html
Internal
Overview
The Mockito framework streamlines the creation and management of external dependencies, and provides an API to create mock objects. It uses proxy objects to verify the invocation and stub calls.
Distributions
mockito-core
dependencies {
testImplementation 'org.mockito:mockito-core:3.11.2'
}