2
0
mirror of synced 2025-01-10 16:46:05 +00:00
cs-codex-dist-tests/Tests/DistTestCore/DontDownloadLogsOnFailureAttribute.cs
2023-09-20 10:51:47 +02:00

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