Class BootTestHelper
- java.lang.Object
-
- org.nuiton.jaxx.runtime.application.test.BootTestHelper
-
public class BootTestHelper extends Object
Created by tchemit on 13/02/2018.- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Constructor Summary
Constructors Constructor Description BootTestHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <E extends Annotation>
EgetAnnotation(AnnotatedElement clazz, Class<E> annotationType)static <E extends Annotation>
E[]getAnnotations(AnnotatedElement clazz, Class<E> annotationType)static BootArgumentsgetBootArgumentsAnnotation(AnnotatedElement testClass)static FilegetTestBasedir(Class<?> testClass)static <E extends Annotation>
booleanwithAnnotation(AnnotatedElement testClass, Class<E> annotationType)
-
-
-
Method Detail
-
getBootArgumentsAnnotation
public static BootArguments getBootArgumentsAnnotation(AnnotatedElement testClass)
-
getAnnotation
public static <E extends Annotation> E getAnnotation(AnnotatedElement clazz, Class<E> annotationType)
-
getAnnotations
public static <E extends Annotation> E[] getAnnotations(AnnotatedElement clazz, Class<E> annotationType)
-
withAnnotation
public static <E extends Annotation> boolean withAnnotation(AnnotatedElement testClass, Class<E> annotationType)
-
-