forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiagnosticIds.cs
More file actions
32 lines (30 loc) · 2.01 KB
/
Copy pathDiagnosticIds.cs
File metadata and controls
32 lines (30 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace MSTest.Analyzers.Helpers;
internal static class DiagnosticIds
{
public const string UseParallelizedAttributeRuleId = "MSTEST0001";
public const string TestClassShouldBeValidRuleId = "MSTEST0002";
public const string TestMethodShouldBeValidRuleId = "MSTEST0003";
public const string PublicTypeShouldBeTestClassRuleId = "MSTEST0004";
public const string TestContextShouldBeValidRuleId = "MSTEST0005";
public const string AvoidExpectedExceptionAttributeRuleId = "MSTEST0006";
public const string UseAttributeOnTestMethodRuleId = "MSTEST0007";
public const string TestInitializeShouldBeValidRuleId = "MSTEST0008";
public const string TestCleanupShouldBeValidRuleId = "MSTEST0009";
public const string ClassInitializeShouldBeValidRuleId = "MSTEST0010";
public const string ClassCleanupShouldBeValidRuleId = "MSTEST0011";
public const string AssemblyInitializeShouldBeValidRuleId = "MSTEST0012";
public const string AssemblyCleanupShouldBeValidRuleId = "MSTEST0013";
public const string DataRowShouldBeValidRuleId = "MSTEST0014";
public const string TestMethodShouldNotBeIgnoredRuleId = "MSTEST0015";
public const string TestClassShouldHaveTestMethodRuleId = "MSTEST0016";
public const string AssertionArgsShouldBePassedInCorrectOrderRuleId = "MSTEST0017";
public const string PreferTestInitializeOverConstructorRuleId = "MSTEST0019";
public const string PreferConstructorOverTestInitializeRuleId = "MSTEST0020";
public const string PreferDisposeOverTestCleanupRuleId = "MSTEST0021";
public const string PreferTestCleanupOverDisposeRuleId = "MSTEST0022";
public const string DoNotNegateBooleanAssertionRuleId = "MSTEST0023";
public const string DoNotStoreStaticTestContextAnalyzerRuleId = "MSTEST0024";
public const string PreferAssertFailOverAlwaysFalseConditionsRuleId = "MSTEST0025";
}