We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb61ce commit 08a8afcCopy full SHA for 08a8afc
1 file changed
checkstyle/checkstyle.xml
@@ -32,6 +32,12 @@
32
<!-- Misc Checks. See: http://checkstyle.sourceforge.net/config_misc.html -->
33
<module name="NewlineAtEndOfFile"/>
34
35
+ <module name="RegexpSingleline">
36
+ <property name="format" value="org\.mockito\.internal\."/>
37
+ <property name="message"
38
+ value="Usage of org.mockito.internal.* is forbidden. Use public Mockito API or standard Java utilities instead."/>
39
+ </module>
40
+
41
<module name="TreeWalker">
42
<!-- Coding Checks. See: https://checkstyle.sourceforge.io/config_coding.html -->
43
<module name="SimplifyBooleanExpression"/>
0 commit comments