2
0
mirror of synced 2025-01-14 18:44:29 +00:00
cs-codex-dist-tests/DistTestCore/DontDownloadLogsOnFailureAttribute.cs

16 lines
382 B
C#

using NUnit.Framework;
namespace DistTestCore
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class DontDownloadLogsOnFailureAttribute : PropertyAttribute
{
public const string DontDownloadKey = "DontDownloadLogs";
public DontDownloadLogsOnFailureAttribute()
: base(DontDownloadKey)
{
}
}
}