Class TestMetadata
Represents metadata associated with a test.
public sealed class TestMetadata
- Inheritance
-
TestMetadata
- Inherited Members
Properties
Categories
Gets or sets the test categories (e.g., "Integration", "Unit", "E2E").
public IReadOnlyList<string> Categories { get; set; }
Property Value
CustomAttributes
Gets the custom attributes for additional test metadata.
public Dictionary<string, string> CustomAttributes { get; }
Property Value
Description
Gets or sets the test description.
public string? Description { get; set; }
Property Value
Tags
Gets or sets the test tags for filtering and organization.
public IReadOnlyList<string> Tags { get; set; }