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

org.testng.internal.annotations.ExpectedExceptionsAnnotation Maven / Gradle / Ivy

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

import org.testng.annotations.IExpectedExceptionsAnnotation;

/**
 * An implementation of IExpectedExceptions
 *
 * Created on Dec 20, 2005
 * @author Cedric Beust
 */
public class ExpectedExceptionsAnnotation
  extends BaseAnnotation
  implements IExpectedExceptionsAnnotation
{
  private Class[] m_value = {};

  @Override
  public Class[] getValue() {
    return m_value;
  }

  public void setValue(Class[] value) {
    m_value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy