Class TcLogInfo
- java.lang.Object
-
- com.smartbear.jenkins.plugins.testcomplete.TcLogInfo
-
- All Implemented Interfaces:
Serializable
@ExportedBean public class TcLogInfo extends Object implements Serializable
- Author:
- Igor Filin
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TcLogInfo(long startTime, long stopTime, int testCount, int errorCount, int warningCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
formatStartTime()
String
formatStopTime()
String
formatTestDuration()
int
getErrorCount()
long
getStartTime()
long
getStopTime()
int
getTestCount()
long
getTestDuration()
int
getWarningCount()
String
getXML()
void
setXML(String XML)
-
-
-
Method Detail
-
getStartTime
@Exported(name="timestamp") public long getStartTime()
-
getStopTime
public long getStopTime()
-
getTestDuration
@Exported(name="duration") public long getTestDuration()
-
getTestCount
public int getTestCount()
-
getErrorCount
@Exported(name="errors") public int getErrorCount()
-
getWarningCount
@Exported(name="warnings") public int getWarningCount()
-
formatStartTime
public String formatStartTime()
-
formatStopTime
public String formatStopTime()
-
formatTestDuration
public String formatTestDuration()
-
getXML
public String getXML()
-
setXML
public void setXML(String XML)
-
-