cs-codex-dist-tests/DistTestCore/LongTimeoutsTestAttribute.cs

10 lines
197 B
C#
Raw Normal View History

2023-09-12 11:32:06 +00:00
using NUnit.Framework;
namespace DistTestCore
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class UseLongTimeoutsAttribute : PropertyAttribute
{
}
}