If looking for support
- Search / Ask a question on Stack Overflow / Questions tagged [mockito]
- Go to the mockito mailing-list (moderated)
- Issues should always have a Short, Self Contained, Correct (Compilable), Example (same as any question on Stack Overflow)
- At least one commit message in the PR starts with
Fixes #id :
whereid
is an issue tracker id. This allows automated release notes generation. Also GitHub will track the issue and close it when the PR is merged. - Use
@since
tags for new public APIs - Include tests
- Document public APIs with examples
- For new features consider adding new documentation item in main
Mockito
class - Also, look at the GitHub's Pull Request guide
- Comment on issues or pull requests
- If you know the answer to a question posted to our mailing list - don't hesitate to write a reply. That helps us a lot.
- Also, don't hesitate to ask questions on the mailing list - that helps us improve javadocs/FAQ.
- Please suggest changes to javadoc/exception messages when you find something unclear.
- If you miss a particular feature in Mockito - browse or ask on the mailing list, show us a sample code and describe the problem.
- Wondering what to work on? See task/bug list and pick up something you would like to work on. Remember that some feature requests we somewhat not agree with so not everything we want to work on :)
- Mockito currently uses GitHub for versioning so you can create a fork of Mockito in no time. Go to the github project and "Create your own fork". Create a new branch, commit, ..., when you're ready let us know about your pull request so we can discuss it and merge the PR!
- Note the project now uses gradle, when your Gradle install is ready, make your IDE project's files (for example
gradle idea
). Other gradle commands are listed viagradle tasks
.
As you may have noticed, Mockito has now a continuous release bot, that means that each merged pull request will be automatically released in a newer version of Mockito. For that reason each pull request has to go through a thorough review and/or discussion.
Things we pay attention in a PR :
-
On pull requests, please document the change, what it brings, what is the benefit.
-
Clean commit history in the topic branch in your fork of the repository, even during review. That means that commits are rebased and squashed if necessary, so that each commit clearly changes one things and there are no extraneous fix-ups.
For that matter it's possible to commit semantic changes. Tests are an asset, so is history.
Example gratia:
Fixes #73 : The new feature Fixes #73 : Refactors this part of Mockito to make feature possible
-
In the code, always test your feature / change, in unit tests and in our
acceptance test suite
located inorg.mockitousage
. Older tests will be migrated when a test is modified. -
New test methods should follow a snake case convention (
ensure_that_stuff_is_doing_that
), this allows the test name to be fully expressive on intent while still readable. -
When reporting errors to the users, if it's a user report report it gently and explain how a user should deal with it, see the
Reporter
class. However not all errors should go there, some unlikely technical errors don't need to be in theReporter
class. -
Documentation !!! Always document with love the public API. Internals could use some love too. In all cases the code should auto-document itself like any well-designed API.
-
We use (4) spaces instead of tabs. Make sure line ending is Unix style (LF). More on line ending on the Github help.
If you are unsure about git you can have a look on our git tips to have a clean history.
This section is not about some kind of fruitless tabs vs spaces debate. It's about having the code readable, the project grows and it is not rare to read contributions from many different individuals. Each one of us has a different writing style, we are fine with this. Without enforcing we may be picky about it, however we think that this improves the readability of the code for everyone.
Note: ./gradlew spotlessApply
will fix most of these automatically for you and you don't need to worry about this at all. This is only to document the guidelines to make sure we keep consistent readable code.
This includes IntelliJ IDEA instructions, however we are sure there's similar settings in all major IDEs.
But first of all, make sure that :
- Don't use tabs, only spaces
- Character encoding is UTF-8
- Line ending character is unix-style
LF
- New line is added at end of file:
IntelliJ setting > Editor > General > Ensure line feed at file end on save
For most editors, this should be automatically enforced by EditorConfig. Check if your editor has a built-in plugin or if you need to download one. IntelliJ has a built-in plugin, for Eclipse you need to download this plugin.
If you want to check if your code complies to the style guide, you can run:
./gradlew checkstyleMain
to check the main source code./gradlew checkstyleTest
to check the test source code./gradlew check
to check main and test source code, and run the tests
Imports must be sorted in the following order
import static java.*
import static javax.*
import static all other imports
- blank line
import java.*
import javax.*
- blank line
import all other imports
This order can be set in IntelliJ setting > Editor > Code Style > Java > Imports > Import Layout
Also make sure that
- One blank lines before imports.
- One blank lines after imports.
- Never import with wildcard
*
- Set
IntelliJ setting > Editor > Code Style > Java > Imports > Class count to use import with '*'
to100
- Set
IntelliJ setting > Editor > Code Style > Java > Imports > Names count to use import static with '*'
to100
- Set
We found vertical alignment helping when reading the code, for that reason we want to align vertically chained APIs, parameters, etc. For that reason the spacing characters are spaces.
-
For chained calls, when multiple lines make more sense, we want method calls to be aligned vertically with previous dot.
mock(Foo.class, withSettings().name("bar") .serializableMode(ACROSS_CLASSLOADER) .verboseLogging().invocationListener(...));
Go to
IntelliJ setting > Editor > Code Style > Java > Wrapping and Braces
- For parameter
Chained method calls
choose :Do not wrap
- For sub-parameter
Align when multiline
tick the checkbox
- For parameter
-
When declaring a function with several parameters and when multiple lines make sense, we want to align vertically the method parameters and arguments
void feature(String key, RepresentsSomething something) { // ... }
Go to
IntelliJ setting > Editor > Code Style > Java > Wrapping and Braces
- For parameter
Method declaration parameters
choose :Do not wrap
- For sub-parameter
Align when multiline
tick the checkbox
- For parameter
-
When using a function with several parameters and when multiple lines make sense, we want to align vertically the method parameters and arguments
given(mock.action()).willReturn("a very long param", "b another very long parameter", "c yet another");
Go to
IntelliJ setting > Editor > Code Style > Java > Wrapping and Braces
- For parameter
Method call parameters
choose :Do not wrap
- For sub-parameter
Align when multiline
tick the checkbox
- For parameter
-
When declaring an annotation with several parameters and when multiple lines make sense, we want to align vertically the annotation parameters
@Mock(answer = Answers.RETURNS_DEFAULTS, serializable = true, extraInterfaces = { List.class, YetAnotherInterface.class })
Go to
IntelliJ setting > Editor > Code Style > Java > Wrapping and Braces
- For parameter
Annotation Parameters
choose :Do not wrap
- For sub-parameter
Align when multiline
tick the checkbox
- For parameter
-
When declaring a throws list with several exception and when multiple line make sense, we want to align vertically the exceptions parameters
void feature() throws IOException, YetAnotherException { // ... }
Go to
IntelliJ setting > Editor > Code Style > Java > Wrapping and Braces
- For parameter
Throws list
choose :Do not wrap
- For sub-parameter
Align when multiline
tick the checkbox
- For parameter
- It is possible to run
./gradlew dependencyUpdates
to find out of date dependencies, including tools. Note that this may show beta or alpha dependencies.