1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00
Files
mobile/src/UiTests/Categories/SmokeTest.cs
2022-04-05 00:35:48 +01:00

13 lines
338 B
C#
Executable File

using System;
using NUnit.Framework;
namespace Bit.UITests.Categories
{
[AttributeUsage(AttributeTargets.Method)]
#pragma warning disable SA1649 // File name should match first type name
public class SmokeTestAttribute : CategoryAttribute
#pragma warning restore SA1649 // File name should match first type name
{
}
}