| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using NUnit.Framework; |
| | 6 | |
|
| | 7 | | namespace Azure.Core.TestFramework |
| | 8 | | { |
| | 9 | | [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, |
| | 10 | | public class RunFrequencyAttribute : CategoryAttribute |
| | 11 | | { |
| 436 | 12 | | public RunFrequencyAttribute(RunTestFrequency frequency) |
| | 13 | | { |
| 436 | 14 | | this.categoryName = Enum.GetName(typeof(RunTestFrequency), frequency); |
| 436 | 15 | | } |
| | 16 | | } |
| | 17 | | } |