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

org.testng.annotations.ObjectFactory Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.annotations;

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

/**
 * Marks a method as the object factory to use for creating all test instances. The test classes can
 * only contain one method marked with this annotation, and the method must return an instance of
 * {@link org.testng.ITestObjectFactory}.
 */
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target(java.lang.annotation.ElementType.METHOD)
public @interface ObjectFactory {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy