1 package host.exp.exponent.annotations 2 3 import java.lang.annotation.Retention 4 import java.lang.annotation.RetentionPolicy 5 6 @Target( 7 AnnotationTarget.FUNCTION, 8 AnnotationTarget.PROPERTY_GETTER, 9 AnnotationTarget.PROPERTY_SETTER 10 ) 11 @Retention( 12 RetentionPolicy.RUNTIME 13 ) 14 annotation class ExpoTestSuiteTest 15