All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.spin.test.ScriptEngine Maven / Gradle / Ivy

There is a newer version: 1.0.0-alpha5
Show newest version
package org.camunda.spin.test;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation to define a {@link ScriptEngine} of a test class
 * using the {@link ScriptEngineRule}.
 *
 * 
 *   {@literal @}ScriptEngine("python")
 *   public class SpinXmlPythonTest extends SpinXmlScriptTest {
 *     // ...
 *   }
 * 
* * @author Sebastian Menski */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface ScriptEngine { String value(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy