我有一个自定义活页夹:

@BindingAnnotation(CustomBinder.CustomBinderFactory.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.PARAMETER })
public @interface CustomBinder {
    class CustomBinderFactory implements BinderFactory<CustomBinder> {
        @Override
        public Binder<CustomBinder, Entity> build(CustomBinder annotation) {
            return (q, bind, arg) -> {
                // implement
            };
        }
    }
}


我想为此编写一个单元测试;我怎么做?

最佳答案

这要看情况。首先,您可以编写一个简单的jUnit测试和模拟(或最好实例化)CustomBinder类。

如果要添加编写集成测试,则集成测试可以使用此批注-并且可以声明结果。

但是我将从一个简单的单元测试开始。看一下这篇文章:https://www.baeldung.com/java-custom-annotation

关于java - 如何测试jdbi BinderFactory,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60065920/

10-10 01:30