Skip to content

Commit 95bc5b2

Browse files
authored
Add DoNotMock mention to main JavaDoc (#2512)
I forgot to add the DoNotMock feature to the main JavaDoc in #1833
1 parent b91bd29 commit 95bc5b2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/mockito/Mockito.java

+10
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
* <a href="#48">48. New API for mocking static methods (Since 3.4.0)</a><br/>
104104
* <a href="#49">49. New API for mocking object construction (Since 3.5.0)</a><br/>
105105
* <a href="#50">50. Avoiding code generation when restricting mocks to interfaces (Since 3.12.2)</a><br/>
106+
* <a href="#51">51. New API for marking classes as unmockable (Since 4.1.0)</a><br/>
106107
* </b>
107108
*
108109
* <h3 id="0">0. <a class="meaningful_link" href="#mockito2" name="mockito2">Migrating to Mockito 2</a></h3>
@@ -1594,6 +1595,15 @@
15941595
* This mock maker can be activated explicitly by the mockito extension mechanism, just create in the classpath a file
15951596
* <code>/mockito-extensions/org.mockito.plugins.MockMaker</code> containing the value <code>mock-maker-proxy</code>.
15961597
*
1598+
* <h3 id="51">51. <a class="meaningful_link" href="#do_not_mock" name="do_not_mock">Mark classes as unmockable</a> (since 4.1.0)</h3>
1599+
*
1600+
* In some cases, mocking a class/interface can lead to unexpected runtime behavior. For example, mocking a <code>java.util.List</code>
1601+
* is difficult, given the requirements imposed by the interface. This means that on runtime, depending on what methods the application
1602+
* calls on the list, your mock might behave in such a way that it violates the interface.
1603+
*
1604+
* <p>
1605+
* For any class/interface you own that is problematic to mock, you can now mark the class with {@link org.mockito.DoNotMock @DoNotMock}. For usage
1606+
* of the annotation and how to ship your own (to avoid a compile time dependency on a test artifact), please see its JavaDoc.
15971607
* <p>
15981608
*/
15991609
@CheckReturnValue

0 commit comments

Comments
 (0)