This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Eco/VideoBrowser.Test/Common/ManualTestAttribute.cs
2023-07-24 12:00:34 +02:00

31 lines
791 B
C#

namespace VideoBrowser.Test.Common
{
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Collections.Generic;
/// <summary>
/// Defines the <see cref="ManualTestAttribute" />.
/// </summary>
public class ManualTestAttribute : TestCategoryBaseAttribute
{
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="ManualTestAttribute"/> class.
/// </summary>
public ManualTestAttribute()
{
}
#endregion Constructors
#region Properties
/// <summary>
/// Gets the TestCategories.
/// </summary>
public override IList<string> TestCategories => new List<string> { "ManualTest" };
#endregion Properties
}
}