我用自定义注释注释了一些方法:“ ExistForTesting”

@Documented
@Target({TYPE, FIELD, METHOD})
@Retention(SOURCE)
public @interface ExistForTesting {
    String why() default "";
}


我想编写一个(Junit5 + ArchUnit)单元测试,以确保仅从单元测试中使用ExistForTesting带注释的方法。因此,我编写了给定的测试:

ArchCondition<JavaClass> NOT_CALL_TEST_METHODS =
    new ArchCondition<JavaClass>("not call methods annotated with ExistForTesting") {
        @Override
        public void check(@NotNull JavaClass item, ConditionEvents events) {
            item.getMethodCallsFromSelf().stream().filter(method -> method.getTarget().isAnnotatedWith(ExistForTesting.class))
                .forEach(method -> {
                    String message = String.format(
                        "Method %s is annotated with ExistForTesting",
                        method.getTarget().getFullName());
                    events.add(SimpleConditionEvent.violated(method, message));
                });
        }
    };

@Test
public void shouldNotUseTestMethods() {
    classes().that()
        .haveSimpleNameNotEndingWith("Test")
        .should(NOT_CALL_TEST_METHODS)
        .check(appClasses);
}


问题:未检测到我的注释。
调试器查找方法调用,但是method.getTarget().isAnnotatedWith(ExistForTesting.class))始终返回false

我究竟做错了什么?

最佳答案

好的,我的注释保留设置为SOURCE而不是CLASS。
固定。

09-08 07:21