Package com.avoka.fc.core.service
Class ITestSuiteService.TestResult
- java.lang.Object
-
- com.avoka.fc.core.service.ITestSuiteService.TestResult
-
- Enclosing interface:
- ITestSuiteService
public static class ITestSuiteService.TestResult extends Object
Provides a unit test result class.- Since:
- 4.3.0
-
-
Constructor Summary
Constructors Constructor Description TestResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetDuration()ThrowablegetError()LonggetServiceId()StringgetServiceName()voidsetDuration(Long duration)voidsetError(Throwable error)voidsetServiceId(Long serviceId)voidsetServiceName(String serviceName)
-
-
-
Method Detail
-
getDuration
public Long getDuration()
- Returns:
- the duration
-
setDuration
public void setDuration(Long duration)
- Parameters:
duration- the duration to set
-
getServiceId
public Long getServiceId()
- Returns:
- the serviceId
-
setServiceId
public void setServiceId(Long serviceId)
- Parameters:
serviceId- the serviceId to set
-
getServiceName
public String getServiceName()
- Returns:
- the serviceName
-
setServiceName
public void setServiceName(String serviceName)
- Parameters:
serviceName- the serviceName to set
-
getError
public Throwable getError()
- Returns:
- the error
-
setError
public void setError(Throwable error)
- Parameters:
error- the error to set
-
-