@Retention(value=RUNTIME) public @interface EventDeploymentAnnotation
Usage:
package org.example;
...
public class ExampleTest {
@EventDeploymentAnnotation
public void testForADeploymentWithASingleResource() {
// a deployment will be available in the engine repository
// containing the single resource org/example/ExampleTest.event
}
@EventDeploymentAnnotation(resources = {
"org/example/one.event",
"org/example/two.event"})
public void testForADeploymentWithASingleResource() {
// a deployment will be available in the engine repository
// containing the three resources
}
Copyright © 2020 Flowable. All rights reserved.