de.telekom.test.bddwebapp.stories.config.TestLevel 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.stories.config;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Additional test level annotation to run stories on different environments.
*
* @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)
public @interface TestLevel {
int[] testLevels() default 0;
}