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

org.testng.internal.objects.IObjectDispenser Maven / Gradle / Ivy

package org.testng.internal.objects;

import org.testng.internal.objects.pojo.CreationAttributes;

/**
 * Represents the capabilities of an implementation that is capable of dispensing new Objects for
 * TestNG
 */
public interface IObjectDispenser {

  String GUICE_HELPER = "testng.guice-helper";

  Object dispense(CreationAttributes attributes);

  /** @param dispenser - The {@link IObjectDispenser} to dispense */
  void setNextDispenser(IObjectDispenser dispenser);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy