Package org.testng.xml
Class LaunchSuite
- java.lang.Object
-
- org.testng.xml.LaunchSuite
-
- Direct Known Subclasses:
LaunchSuite.CustomizedSuite,LaunchSuite.ExistingSuite
public abstract class LaunchSuite extends java.lang.ObjectThis class is used to encapsulate a launch. Various synthetic XML files are created depending on whether the user is trying to launch a suite, a class, a method, etc...
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classLaunchSuite.ClassesAndMethodsSuite(package private) static classLaunchSuite.ClassListSuiteClassListSuiteTODO cquezel JavaDoc.private static classLaunchSuite.CustomizedSuiteCustomizedSuiteTODO cquezel JavaDoc.static classLaunchSuite.ExistingSuiteExistingSuiteis a non-temporary LaunchSuite based on an existing file.(package private) static classLaunchSuite.MethodsSuiteAMethodsSuiteis a suite made up of methods.
-
Field Summary
Fields Modifier and Type Field Description private static LoggerLOGGERThis class's log4testng Logger.protected booleanm_temporary
-
Constructor Summary
Constructors Modifier Constructor Description protectedLaunchSuite(boolean isTemp)Constructs aLaunchSuite
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract XMLStringBuffergetSuiteBuffer()booleanisTemporary()Returns the temporary state.abstract java.io.Filesave(java.io.File directory)Saves the suite file in the specified directory and returns the file pathname.
-
-
-
Field Detail
-
LOGGER
private static final Logger LOGGER
This class's log4testng Logger.
-
m_temporary
protected boolean m_temporary
-
-
Method Detail
-
isTemporary
public boolean isTemporary()
Returns the temporary state.- Returns:
- the temporary state.
-
save
public abstract java.io.File save(java.io.File directory)
Saves the suite file in the specified directory and returns the file pathname.- Parameters:
directory- the directory where the suite file is to be saved.- Returns:
- the file pathname of the saved file.
-
getSuiteBuffer
public abstract XMLStringBuffer getSuiteBuffer()
-
-