Table of Contents

Class TestSession

Namespace
Xping.Sdk.Core.Models
Assembly
Xping.Sdk.Core.dll

Represents a test session containing environment information needed for flakiness detection and confidence scoring.

public sealed class TestSession
Inheritance
TestSession
Inherited Members

Remarks

In batch operations, this context is sent once with the first execution to optimize payload size, as all executions in a batch share the same session environment.

Constructors

TestSession()

Initializes a new instance of the TestSession class.

public TestSession()

Properties

EnvironmentInfo

Gets or sets the environment information for this test session. This is shared across all test executions in the session.

public EnvironmentInfo EnvironmentInfo { get; set; }

Property Value

EnvironmentInfo

SessionId

Gets or sets the unique identifier for this test session.

public string SessionId { get; set; }

Property Value

string

StartedAt

Gets or sets when the test session started (UTC).

public DateTime StartedAt { get; set; }

Property Value

DateTime