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

org.testng.internal.IConfiguration Maven / Gradle / Ivy

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

import org.testng.*;
import org.testng.internal.annotations.IAnnotationFinder;

import java.util.List;

public interface IConfiguration {
  IAnnotationFinder getAnnotationFinder();
  void setAnnotationFinder(IAnnotationFinder finder);

  ITestObjectFactory getObjectFactory();
  void setObjectFactory(ITestObjectFactory m_objectFactory);

  IHookable getHookable();
  void setHookable(IHookable h);

  IConfigurable getConfigurable();
  void setConfigurable(IConfigurable c);

  List getExecutionListeners();
  void addExecutionListener(IExecutionListener l);

  List getConfigurationListeners();
  void addConfigurationListener(IConfigurationListener cl);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy