# mockito **Repository Path**: mirrors_pimterry/mockito ## Basic Information - **Project Name**: mockito - **Description**: simpler & better mocking - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![Mockito](http://docs.mockito.googlecode.com/hg/latest/org/mockito/logo.jpg) simplier & better mocking [![Build Status](https://travis-ci.org/mockito/mockito.svg?branch=master)](https://travis-ci.org/mockito/mockito) [![Coverage Status](http://img.shields.io/coveralls/mockito/mockito/master.svg)](https://coveralls.io/r/mockito/mockito) [ ![Current release](https://api.bintray.com/packages/szczepiq/maven/mockito/images/download.svg) ](https://bintray.com/szczepiq/maven/mockito/_latestVersion) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.mockito/mockito-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.mockito/mockito-core) ## Current release See the [release notes page](https://github.com/mockito/mockito/blob/master/doc/release-notes/official.md) and [latest documentation](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html). ## JDK8 status Mockito should work fine with JDK8 if you stay away from defender methods. Lambda usage may work just as good for `Answer`s. We're unsure about every JDK8 features at the moment, like serializing a mock that uses a lambda. Error report and pull request are welcome though ([contributing guide](https://github.com/mockito/mockito/wiki/How%20To%20Contribute)). ## Moving to github We are currently moving a few stuff from [Google Code](https://code.google.com/p/mockito/) to [Github](https://github.com/mockito/mockito). For now only the code repository is moved, other stuff will follow like the wiki pages. Documentation may or may not follow. But discussion group, issue tracker will stay at google (unfortunatley GH PR counters incremented before we had the chance to move our issues). ## Why drink it? Mockito is a mocking framework that tastes really good. It lets you write beautiful tests with clean & simple API. Mockito doesn't give you hangover because the tests are very readable and they produce clean verification errors. Read more about [features & motivations](https://code.google.com/p/mockito/wiki/FeaturesAndMotivations). > *"We decided during the main conference that we should use JUnit 4 and Mockito because we think they are the future of TDD and mocking in Java"* - Dan North, the originator of BDD [More quotes](https://code.google.com/p/mockito/wiki/Quotes) > Over 15000 downloads of 1.9.0 version ('12), excluding maven/Gradle users. For latest figures see the downloads. [More about the user base](https://code.google.com/p/mockito/wiki/UserBase) ## How do I drink it? Recommended way of getting Mockito is declaring a dependency on "mockito-core" library (not "mockito-all"!) using your favorite build system. My favorite build system happens to be [Gradle](http://gradle.org) and so I do: ```groovy repositories { jcenter() } dependencies { testCompile "org.mockito:mockito-core:1.+" } ``` For legacy builds with manual dependency management it might be useful to use mockito-all package that can be downloaded from [Mockito's Bintray repository](https://bintray.com/szczepiq/maven/mockito/_latestVersion) or [Bintray's jcenter](http://jcenter.bintray.com/org/mockito/mockito-all). For more information please refer to the [wiki page](https://code.google.com/p/mockito/wiki/DeclaringMockitoDependency). ### Then you can verify interactions ```java import static org.mockito.Mockito.*; // mock creation List mockedList = mock(List.class); // using mock object ; observe that it didn't throw any "unexpected interaction exception" exception mockedList.add("one"); mockedList.clear(); // selective & explicit verification verify(mockedList).add("one"); verify(mockedList).clear(); ``` ### Or stub method calls ```java // you can mock concrete classes, not only interfaces LinkedList mockedList = mock(LinkedList.class); // stubbing; before the actual execution when(mockedList.get(0)).thenReturn("first"); // the following prints "first" System.out.println(mockedList.get(0)); // the following prints "null" because get(999) was not subbed System.out.println(mockedList.get(999)); ``` ### You can go further [Main reference documentation](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html) features: * [`mock()`](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html#mock(java.lang.Class))/[`@Mock`](http://mockito.github.io/mockito/docs/current/org/mockito/Mock.html): Create a mock (specify how it should behave via [`Answer`](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html#field_summary)/[`ReturnValue`](http://mockito.github.io/mockito/docs/current/org/mockito/ReturnValues.html)/[`MockSettings`](http://mockito.github.io/mockito/docs/current/org/mockito/MockSettings.html)) * [`when()`](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html#when(T))/[`given()`](https://mockito.github.io/mockito/docs/current/org/mockito/BDDMockito.html#given(T)) to specify how a mock should behave. * If the provided answers doesn't fit your needs, write one yourself extending the [`Answer`](http://mockito.github.io/mockito/docs/current/org/mockito/stubbing/Answer.html) interface * [`spy()`](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html#spy(T))/[`@Spy`](http://mockito.github.io/mockito/docs/current/org/mockito/Spy.html): Calls a real object but records what has been called, * [`@InjectMocks`](http://mockito.github.io/mockito/docs/current/org/mockito/InjectMocks.html): Used as a kind of simple automatic dependency injection of fields created using the `@Spy` or `@Mock` annotation. * [`verify()`](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html#verify(T)) to check methods were called with given arguments; can match any expression via the [`any()`](https://mockito.github.io/mockito/docs/current/org/mockito/Matchers.html#any()), or capture what arguments where called using [`@Captor`](http://mockito.github.io/mockito/docs/current/org/mockito/Captor.html) instead. * Try BDD syntax with [BDDMockito](http://mockito.github.io/mockito/docs/current/org/mockito/BDDMockito.html) * Try the Mockito on Android, thanks to the Google guys working on dexmaker (more on that later) ### Remember * Do not mock types you don't own * Don't mock value objects * Don't mock everything * Show some love with your tests Click [here](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html) for more documentation and examples. Remember all documentation lives in javadocs so you don’t need to visit that page too often. You can grab the RefCard [here](http://refcardz.dzone.com/refcardz/mockito). If you have any suggestions, find documentation unclear or you found a bug, write to our [mailing list](http://groups.google.com/group/mockito). You can report bugs [here](http://code.google.com/p/mockito/issues/list). ## Who is your bartender? Mockito is served to you by **Szczepan Faber and friends**. First people who tried Mockito were developers of the [Guardian](http://guardian.co.uk/) project in London in early 2008. Here is how Szczepan explained [why we need another mocking framework](http://monkeyisland.pl/2008/01/14/mockito)? Firstly, hats down before **[EasyMock](http://easymock.org/) folks** for their ideas on beautiful and refactorable mocking syntax. First hacks on Mockito were done on top of the EasyMock code. Here are just some of my friends who contributed ideas to Mockito (apologize if I missed somebody): **Igor Czechowski**, **Patric Fornasier**, **Jim Barritt**, **Felix Leipold**, **Liz Keogh**, **Bartosz Bańkowski**. Now some other people joined the gang : **Brice Dutheil** then **David Wallace**. Special thanks to **Erik Ramfelt**, and **Steve Christou** for putting Mockito on there Jenkins server (continuous integration) for a few years. Now Travis and Coveralls took over. Thanks to **Karol Poźniak** for the logo :) Finally, thanks to **Erik Brakkee** who helps us getting jars to maven central ## links wrap-up ### Wiki * [FAQ](https://github.com/mockito/mockito/wiki/FAQ) * [How to contribute](https://github.com/mockito/mockito/wiki/How%20To%20Contribute) * [Mockito for python](https://code.google.com/p/mockito/wiki/MockitoForPython) * [Mockito VS EasyMock](https://code.google.com/p/mockito/wiki/MockitoVSEasyMock) * [Related projects](https://code.google.com/p/mockito/wiki/RelatedProjects) * [Release notes](https://github.com/mockito/mockito/blob/master/doc/release-notes/official.md) * [More wiki pages](https://github.com/mockito/mockito/wiki) * [Old wiki pages on google code](https://code.google.com/p/mockito/w/list) ### Blogs * [Szczepan's new blog](http://szczepiq.blogspot.com/) * [Brice's French coffee workshop](http://blog.arkey.fr/) ### Other project links * [Latest documentation](http://mockito.github.io/mockito/docs/current/org/mockito/Mockito.html) * [Dzone Reference Card](http://refcardz.dzone.com/refcardz/mockito) * [Continuous integration server](http://travis-ci.org/mockito/mockito) ### Groups * [Mockito mailing list](http://groups.google.com/group/mockito)