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);
|
}
|
}
|