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

dev.galasa.core.manager.RunName Maven / Gradle / Ivy

There is a newer version: 0.38.0
Show newest version
/*
 * Licensed Materials - Property of IBM
 * 
 * (c) Copyright IBM Corp. 2019.
 */
package dev.galasa.core.manager;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

import dev.galasa.core.manager.internal.CoreManagerField;
import dev.galasa.framework.spi.ValidAnnotatedFields;

/**
 * 

* Fill this field with the name of the Test Run. Can be used for making * resource names unique to this run. The Test Run will be unique across all * Local and Automated runs that are in the system at that point. *

* *

* Will only populate public {@link java.lang.String} fields. *

* * @author Michael Baylis * @see {@link java.lang.String} * */ @Retention(RUNTIME) @Target(FIELD) @CoreManagerField @ValidAnnotatedFields({ String.class }) public @interface RunName { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy