1 package com.fermod.annotations;
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.Target;
7 import org.junit.jupiter.params.provider.ArgumentsSource;
9 import java.lang.annotation.RetentionPolicy;
11 @Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD})
12 @Retention(RetentionPolicy.RUNTIME)
13 @ArgumentsSource(ArrayArgumentsProvider.class)