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

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

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

import org.testng.IMethodSelectorContext;
import org.testng.collections.Maps;

import java.util.Map;

/**
 * Simple implementation of IMethodSelectorContext
 *
 * Created on Jan 3, 2007
 * @author Cedric Beust
 */
public class DefaultMethodSelectorContext implements IMethodSelectorContext {
  private Map m_userData = Maps.newHashMap();
  private boolean m_isStopped = false;

  @Override
  public Map getUserData() {
    return m_userData;
  }

  @Override
  public boolean isStopped() {
    return m_isStopped;
  }

  @Override
  public void setStopped(boolean stopped) {
    m_isStopped = stopped;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy