Skip to content

Commit

Permalink
chore: Update documentation of NUnit Analyzers to version 3.8 (#795)
Browse files Browse the repository at this point in the history
* chore: Update documentation of NUnit Analyzers to version 8

* chore: Add word to spell checker

* chore: Correct url
  • Loading branch information
mikkelbu authored Sep 26, 2023
1 parent 03a1e93 commit f4ded74
Show file tree
Hide file tree
Showing 86 changed files with 489 additions and 81 deletions.
1 change: 1 addition & 0 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"typeparamref",
"Ulps",
"ULPs",
"uninstantiated",
"unmanaged",
"VSIX",
"VSIXes",
Expand Down
5 changes: 5 additions & 0 deletions docs/articles/nunit-analyzers/NUnit-Analyzers.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Rules which enforce structural requirements on the test code.
| [NUnit1028](NUnit1028.md) | The non-test method is public | :white_check_mark: | :information_source: | :white_check_mark: |
| [NUnit1029](NUnit1029.md) | The number of parameters provided by the TestCaseSource does not match the number of parameters in the Test method | :white_check_mark: | :exclamation: | :x: |
| [NUnit1030](NUnit1030.md) | The type of parameter provided by the TestCaseSource does not match the type of the parameter in the Test method | :white_check_mark: | :exclamation: | :x: |
| [NUnit1031](NUnit1031.md) | The individual arguments provided by a ValuesAttribute must match the type of the corresponding parameter of the method | :white_check_mark: | :exclamation: | :x: |
| [NUnit1032](NUnit1032.md) | An IDisposable field/property should be Disposed in a TearDown method | :white_check_mark: | :exclamation: | :x: |

## Assertion Rules (NUnit2001 - )

Expand Down Expand Up @@ -106,6 +108,7 @@ Rules which improve assertions in the test code.
| [NUnit2044](NUnit2044.md) | Non-delegate actual parameter | :white_check_mark: | :exclamation: | :white_check_mark: |
| [NUnit2045](NUnit2045.md) | Use Assert.Multiple | :white_check_mark: | :information_source: | :white_check_mark: |
| [NUnit2046](NUnit2046.md) | Use CollectionConstraint for better assertion messages in case of failure | :white_check_mark: | :information_source: | :white_check_mark: |
| [NUnit2047](NUnit2047.md) | Incompatible types for Within constraint | :white_check_mark: | :warning: | :white_check_mark: |

## Suppressor Rules (NUnit3001 - )

Expand All @@ -115,3 +118,5 @@ Rules which suppress compiler errors based on context. Note that these rules are
| :-- | :-- | :--: | :--: | :--: |
| [NUnit3001](NUnit3001.md) | Expression was checked in an Assert.NotNull, Assert.IsNotNull or Assert.That call | :white_check_mark: | :information_source: | :x: |
| [NUnit3002](NUnit3002.md) | Field/Property is initialized in SetUp or OneTimeSetUp method | :white_check_mark: | :information_source: | :x: |
| [NUnit3003](NUnit3003.md) | Class is an NUnit TestFixture and is instantiated using reflection | :white_check_mark: | :information_source: | :x: |
| [NUnit3004](NUnit3004.md) | Field should be Disposed in TearDown or OneTimeTearDown method | :white_check_mark: | :information_source: | :x: |
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1001.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseUsage/TestCaseUsageAnalyzer.cs)
| Code | [TestCaseUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseUsage/TestCaseUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1002.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Warning
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1003.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseUsage/TestCaseUsageAnalyzer.cs)
| Code | [TestCaseUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseUsage/TestCaseUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1004.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseUsage/TestCaseUsageAnalyzer.cs)
| Code | [TestCaseUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseUsage/TestCaseUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1005.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1006.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1007.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1008.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Warning
| Enabled | True
| Category | Structure
| Code | [ParallelizableUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ParallelizableUsage/ParallelizableUsageAnalyzer.cs)
| Code | [ParallelizableUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ParallelizableUsage/ParallelizableUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1009.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [ParallelizableUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ParallelizableUsage/ParallelizableUsageAnalyzer.cs)
| Code | [ParallelizableUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ParallelizableUsage/ParallelizableUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1010.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [ParallelizableUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ParallelizableUsage/ParallelizableUsageAnalyzer.cs)
| Code | [ParallelizableUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ParallelizableUsage/ParallelizableUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1011.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1012.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1013.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1014.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1015.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1016.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1017.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1018.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1019.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1020.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1021.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Warning
| Enabled | True
| Category | Structure
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1022.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1023.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1024.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1025.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)
| Code | [ValueSourceUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/ValueSourceUsage/ValueSourceUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1026.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodAccessibilityLevelAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodAccessibilityLevel/TestMethodAccessibilityLevelAnalyzer.cs)
| Code | [TestMethodAccessibilityLevelAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodAccessibilityLevel/TestMethodAccessibilityLevelAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1027.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)
| Code | [TestMethodUsageAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestMethodUsage/TestMethodUsageAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1028.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Info
| Enabled | True
| Category | Structure
| Code | [NonTestMethodAccessibilityLevelAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/NonTestMethodAccessibilityLevel/NonTestMethodAccessibilityLevelAnalyzer.cs)
| Code | [NonTestMethodAccessibilityLevelAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/NonTestMethodAccessibilityLevel/NonTestMethodAccessibilityLevelAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1029.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
2 changes: 1 addition & 1 deletion docs/articles/nunit-analyzers/NUnit1030.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Severity | Error
| Enabled | True
| Category | Structure
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.6.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)
| Code | [TestCaseSourceUsesStringAnalyzer](https://github.com/nunit/nunit.analyzers/blob/3.8.0/src/nunit.analyzers/TestCaseSourceUsage/TestCaseSourceUsesStringAnalyzer.cs)

## Description

Expand Down
Loading

0 comments on commit f4ded74

Please sign in to comment.