de.telekom.test.bddwebapp.api.ApiOnly 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.api;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Disabled the frontend instrumentalisation for single api stories or for the whole test project.
* This annotation can be used at instances of AbstractStory and RunAllStories.
*
* @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 ApiOnly {
}