org.testng.internal.objects.pojo.BasicAttributes 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
The newest version!
package org.testng.internal.objects.pojo;
import org.testng.IClass;
/** Represents the basic attributes associated with object creation. */
public class BasicAttributes {
private final IClass iClass;
private final Class> clazz;
public BasicAttributes(IClass iClass, Class> clazz) {
this.iClass = iClass;
this.clazz = clazz;
}
/** @return - The actual {@link Class} */
public Class> getRawClass() {
return clazz;
}
/** @return - The wrapped {@link IClass} that represents a TestNG test class. */
public IClass getTestClass() {
return iClass;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy