Interface ITestResultUploader
Defines a contract for uploading test execution results.
public interface ITestResultUploader
Methods
UploadAsync(IEnumerable<TestExecution>, CancellationToken)
Uploads a batch of test executions.
Task<UploadResult> UploadAsync(IEnumerable<TestExecution> executions, CancellationToken cancellationToken = default)
Parameters
executionsIEnumerable<TestExecution>The test executions to upload.
cancellationTokenCancellationTokenA cancellation token to cancel the operation.
Returns
- Task<UploadResult>
A task containing the upload result.