Package ai.tock.bot.admin.test
Class TestPlanExecution
-
- All Implemented Interfaces:
public final class TestPlanExecutionAn execution of a TestPlan, with its result.
-
-
Field Summary
Fields Modifier and Type Field Description private final Id<TestPlan>testPlanIdprivate final List<DialogExecutionReport>dialogsprivate final IntegernbErrorsprivate final Instantdateprivate final Durationdurationprivate final Id<TestPlanExecution>_idprivate final TestPlanExecutionStatusstatus
-
Constructor Summary
Constructors Constructor Description TestPlanExecution(Id<TestPlan> testPlanId, List<DialogExecutionReport> dialogs, Integer nbErrors, Instant date, Duration duration, Id<TestPlanExecution> _id, TestPlanExecutionStatus status)
-
Method Summary
Modifier and Type Method Description final Id<TestPlan>getTestPlanId()The test plan identifier. final List<DialogExecutionReport>getDialogs()The dialog execution test reports. final IntegergetNbErrors()Number of errors, if any. final InstantgetDate()Date of the execution. final DurationgetDuration()Duration of the execution. final Id<TestPlanExecution>get_id()The execution identifier. final TestPlanExecutionStatusgetStatus()The status of the test plan execution -
-
Constructor Detail
-
TestPlanExecution
TestPlanExecution(Id<TestPlan> testPlanId, List<DialogExecutionReport> dialogs, Integer nbErrors, Instant date, Duration duration, Id<TestPlanExecution> _id, TestPlanExecutionStatus status)
-
-
Method Detail
-
getTestPlanId
final Id<TestPlan> getTestPlanId()
The test plan identifier.
-
getDialogs
final List<DialogExecutionReport> getDialogs()
The dialog execution test reports.
-
getNbErrors
final Integer getNbErrors()
Number of errors, if any.
-
getDuration
final Duration getDuration()
Duration of the execution.
-
get_id
final Id<TestPlanExecution> get_id()
The execution identifier.
-
getStatus
final TestPlanExecutionStatus getStatus()
The status of the test plan execution
-
-
-
-