atunit
Annotation Type ContainerClass


@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
public @interface ContainerClass

Specifies a Container implementation to use as the dependency injection container for the test.

This annotation is used to plug in an unsupported or custom container. To use a supported container, use the Container annotation instead.

Author:
Logan Johnson <logan.johnson@gmail.com>
See Also:
Container

Required Element Summary
 Class<? extends Container> value
           
 

Element Detail

value

public abstract Class<? extends Container> value