Rule rule = finder.findByKey("checkstyle", "com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck");
assertThat(rule.getConfigKey(), is("Checker/Treewalker/AnnotationUseStyleCheck"));
deleteRules();
rule = finder.findByKey("checkstyle", "com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck");
assertThat(rule, notNullValue());
}
private void deleteRules() {
getSession().createQuery("delete " + Rule.class.getSimpleName()).executeUpdate();