mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
13 lines
338 B
C#
Executable File
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
|
|
{
|
|
}
|
|
}
|