de.telekom.test.bddwebapp.steps.Steps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bdd-web-app Show documentation
Show all versions of bdd-web-app Show documentation
Behavior-driven tests for web applications
package de.telekom.test.bddwebapp.steps;
import org.springframework.stereotype.Component;
import java.lang.annotation.*;
/**
* Regulating the lifecycle of the browser for JBehave frontend tests
*
* After a first implementation of steps annotation by Sven Schomaker, working for Deutsche Telekom AG in 2013.
*
*
* @author Daniel Keiss {@literal }
*
* Copyright (c) 2018 Daniel Keiss, Deutsche Telekom AG
* This file is distributed under the conditions of the Apache License, Version 2.0.
* For details see the file license on the toplevel.
*/
@Target(value = ElementType.TYPE)
@Retention(value = RetentionPolicy.RUNTIME)
@Inherited
@Component
public @interface Steps {
int testLevel() default 0;
}