File tree 1 file changed +10
-0
lines changed
src/main/java/org/mockito
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 103
103
* <a href="#48">48. New API for mocking static methods (Since 3.4.0)</a><br/>
104
104
* <a href="#49">49. New API for mocking object construction (Since 3.5.0)</a><br/>
105
105
* <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/>
106
107
* </b>
107
108
*
108
109
* <h3 id="0">0. <a class="meaningful_link" href="#mockito2" name="mockito2">Migrating to Mockito 2</a></h3>
1594
1595
* This mock maker can be activated explicitly by the mockito extension mechanism, just create in the classpath a file
1595
1596
* <code>/mockito-extensions/org.mockito.plugins.MockMaker</code> containing the value <code>mock-maker-proxy</code>.
1596
1597
*
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.
1597
1607
* <p>
1598
1608
*/
1599
1609
@ CheckReturnValue
You can’t perform that action at this time.
0 commit comments