Package org.testng
Interface IAttributes
-
- All Known Subinterfaces:
ISuite
,ITestContext
,ITestResult
- All Known Implementing Classes:
Attributes
,SuiteRunner
,TestResult
,TestRunner
public interface IAttributes
A trait that is used by all interfaces that lets the user add or remove their own attributes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getAttribute(String name)
Set<String>
getAttributeNames()
Object
removeAttribute(String name)
Remove the attributevoid
setAttribute(String name, Object value)
Set a custom attribute.
-