org.testng.internal.annotations.ExpectedExceptionsAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
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;
}
}