标签: java regex checkstyle
是否可以定义checkstyle MethodName模块以验证@Test方法的不同正则表达式?
我现在的配置是:
<module name="MethodName"> <property name="format" value="^(may_or_may_not_)?[a-z][a-zA-Z0-9]*$"/> </module>
这意味着方法可以在开头有may_or_may_not_。我想知道是否可以只在@Test方法中进行这样的检查。
谢谢!