net.nemerosa.ontrack.acceptance.support.AcceptanceRunContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-acceptance Show documentation
Show all versions of ontrack-acceptance Show documentation
Ontrack module: ontrack-acceptance
The newest version!
package net.nemerosa.ontrack.acceptance.support;
import lombok.Data;
import java.util.concurrent.atomic.AtomicReference;
/**
* Holds the test context
*/
@Data
public class AcceptanceRunContext {
private final String testDescription;
public static final AtomicReference instance =
new AtomicReference<>();
}