Package jp.vmi.junit.result
Interface ITestTarget
-
- All Known Subinterfaces:
ITestCase,ITestSuite,Selenese
- All Known Implementing Classes:
ErrorSource,ErrorTestCase,ErrorTestProject,ErrorTestSuite,TestCase,TestProject,TestSuite
public interface ITestTargetTest target interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBaseName()Get test-target file base name.StringgetName()Get test-target name.StopWatchgetStopWatch()Get stop watch.booleanisError()Is error instance?
-
-
-
Method Detail
-
getBaseName
String getBaseName()
Get test-target file base name. For example, return "def" when file name is "/abc/def.html".- Returns:
- test-target file base name.
-
getName
String getName()
Get test-target name.- Returns:
- test-target name.
-
isError
boolean isError()
Is error instance?- Returns:
- true if this is error instance.
-
getStopWatch
StopWatch getStopWatch()
Get stop watch.- Returns:
- stop watch.
-
-