@Documented @Retention(value=RUNTIME) @Target(value={ANNOTATION_TYPE,TYPE,METHOD}) public @interface ConfigHandler
An annotation that can be placed on a test class or test class method to configure various functions before each integration and system test run (i.e. HK2 ServiceLocator, Spring Application Context, resources, etc). Note that if the annotation is placed on:
value() is specified then a configuration method
within value() class will be called to perform pre-test run configuration. This is useful for sharing
configuration method handlers between test classes and avoid repetitive declaration of
configuration methods in each test class.
public abstract Class<?>[] value
Copyright © 2016–2018 Testify Project. All rights reserved.