Class TTestCaseItem

Unit

Declaration

type TTestCaseItem = class(TObject)

Description

Class that represents a single test case report data.

Hierarchy

Overview

Methods

Public class function New(const ATestSuite, ATestCase: string): TTestCaseItem;

Properties

Public property Status: string read FStatus write FStatus;
Public property Time: string read FTime write FTime;
Public property TestSuite: string read FTestSuite write FTestSuite;
Public property TestCase: string read FTestCase write FTestCase;
Public property Error: string read FError write FError;

Description

Methods

Public class function New(const ATestSuite, ATestCase: string): TTestCaseItem;

Returns an instance of the class with the test suite name and test case name filled.

Properties

Public property Status: string read FStatus write FStatus;

Status execution of the test case. Can be OK or Failed.

Public property Time: string read FTime write FTime;

Time the test took to run

Public property TestSuite: string read FTestSuite write FTestSuite;

Test suite name

Public property TestCase: string read FTestCase write FTestCase;

Test case name

Public property Error: string read FError write FError;

Error message detailing the test case that failed


Generated by PasDoc 0.16.0.