2023-09-13 13:10:19 +00:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
namespace DistTestCore
|
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
2024-04-15 05:36:12 +00:00
|
|
|
|
public class DontDownloadLogsAttribute : PropertyAttribute
|
2023-09-13 13:10:19 +00:00
|
|
|
|
{
|
|
|
|
|
public const string DontDownloadKey = "DontDownloadLogs";
|
|
|
|
|
|
2024-04-15 05:36:12 +00:00
|
|
|
|
public DontDownloadLogsAttribute()
|
2023-09-13 13:10:19 +00:00
|
|
|
|
: base(DontDownloadKey)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|