tomwscott
09/15/2016, 3:35 PM@RunWith(SpringJUnit4ClassRunner::class)
@SpringApplicationConfiguration(classes = arrayOf(SomeRandomSpringConfig::class))
@ActiveProfiles("profile")
@Target(CLASS)
annotation class GroupOfAnnotations
Such that it can then be used on another class
@GroupOfAnnotations
class Wibble ....
Groovy (http://docs.groovy-lang.org/latest/html/api/groovy/transform/AnnotationCollector.html) requires the @AnnotationCollector
to achieve this - does Kotlin require something similar?