chr
2026-04-05 fe750b791d5b517cc4e9bc8e99a9a75139a0cfba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.IO;
namespace OpenTap
{
    /// <summary> Defines the interface for IArtifactListeners. Artifacts are generated by the test plan and may be any kind of file. The artifacts are published sequentially with the results.  </summary>
    public interface IArtifactListener
    {
        /// <summary> Invoked when an artifact is published. Note the artifactStream MUST be disposed after use.
        /// The artifact may be a FileStream, in which case it can be used as such.</summary>
        /// <param name="run">May be a TestPlanRun or TestStepRun depending on how the artifact is published. If it is published with a TestStepRun it means it belongs to that specific step. If its a TestStepRun, TestStepRunCompleted has not been called for that step run. </param>
        /// <param name="artifactStream">The stream containing the artifact data. </param>
        /// <param name="artifactName">The name of the artifact. e.g results.csv</param>
        void OnArtifactPublished(TestRun run, Stream artifactStream, string artifactName);
    }
}