Annotation Type Prepare


  • @Retention(RUNTIME)
    @Target(METHOD)
    public @interface Prepare
    The annotation is to mark the methods which are to be run before the user session started. The prepare methods are useful to allocate resources and shared among scenarios run by the same user. The test developers might create some resources in prepare method, and scenarios access the same resources without having need of creating them repeatedly.

    Since:
    1.1.0
    Author:
    Erhan Bagdemir
    See Also:
    UserSession