mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 15:03:12 +00:00
16 lines
382 B
C#
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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|