@Retention(value=RUNTIME) public @interface FormDeploymentAnnotation
Usage:
package org.example;
...
public class ExampleTest {
@FormDeploymentAnnotation
public void testForADeploymentWithASingleResource() {
// a deployment will be available in the engine repository
// containing the single resource org/example/ExampleTest.testForADeploymentWithASingleResource.form
}
@FormDeploymentAnnotation(resources = {
"org/example/decisionOne.form",
"org/example/decisionTwo.form"})
public void testForADeploymentWithASingleResource() {
// a deployment will be available in the engine repository
// containing the two resources
}
public abstract String[] resources
Copyright © 2019. All rights reserved.