Mockito: Difference between revisions
Jump to navigation
Jump to search
(21 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=External= | =External= | ||
* http://site.mockito.org | * http://site.mockito.org | ||
* https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html | |||
* GitHub https://github.com/mockito/mockito | |||
* https://github.com/mockito/mockito/wiki | |||
* https://www.baeldung.com/mockito-series | * https://www.baeldung.com/mockito-series | ||
* https://www.vogella.com/tutorials/Mockito/article.html | |||
=Internal= | =Internal= | ||
* [[Software Testing Concepts#Internal|Software Testing]] | |||
* [[PowerMock]] | * [[PowerMock]] | ||
* [[JUnit#Overview|JUnit]] | |||
* [[Hamcrest]] | |||
= | =Distributions= | ||
==<tt>mockito-core</tt>== | |||
<syntaxhighlight lang='groovy'> | |||
dependencies { | |||
testImplementation 'org.mockito:mockito-core:3.11.2' | |||
} | |||
</syntaxhighlight> | |||
==<tt>mockito-all</tt>== | |||
=Subjects= | |||
* [[Mockito Concepts|Concepts]] | |||
* [[Mockito Programming Model|Programming Model]] | |||
* [[Spring_Boot_Mockito_Support|Spring Boot Mockito Support]] |
Latest revision as of 01:03, 3 October 2021
External
- http://site.mockito.org
- https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html
- GitHub https://github.com/mockito/mockito
- https://github.com/mockito/mockito/wiki
- https://www.baeldung.com/mockito-series
- https://www.vogella.com/tutorials/Mockito/article.html
Internal
Distributions
mockito-core
dependencies {
testImplementation 'org.mockito:mockito-core:3.11.2'
}