|
8 | 8 | | Severity | Error
|
9 | 9 | | Enabled | True
|
10 | 10 | | Category | Structure
|
11 |
| -| Code | [DisposeFieldsAndPropertiesInTearDownAnalyzer](https://github.com/nunit/nunit.analyzers/blob/4.1.0/src/nunit.analyzers/DisposeFieldsAndPropertiesInTearDown/DisposeFieldsAndPropertiesInTearDownAnalyzer.cs) |
| 11 | +| Code | [DisposeFieldsAndPropertiesInTearDownAnalyzer](https://github.com/nunit/nunit.analyzers/blob/4.4.0/src/nunit.analyzers/DisposeFieldsAndPropertiesInTearDown/DisposeFieldsAndPropertiesInTearDownAnalyzer.cs) |
12 | 12 |
|
13 | 13 | ## Description
|
14 | 14 |
|
15 | 15 | An IDisposable field/property should be Disposed in a TearDown method.
|
16 | 16 |
|
| 17 | +This analyzer rule only applies to a `TestFixture` which is using the default |
| 18 | +NUnit `SingleInstance` life cycle where the class is instantiated once for all tests. |
| 19 | + |
| 20 | +If you are using `LifeCycle.InstancePerTestCase` you should dispose the fields/properties |
| 21 | +in the `Dispose` method of the test class. |
| 22 | + |
17 | 23 | ## Motivation
|
18 | 24 |
|
19 | 25 | Not Disposing fields/properties can cause memory leaks or failing tests.
|
20 | 26 |
|
21 | 27 | ## How to fix violations
|
22 | 28 |
|
| 29 | +### LifeCycle.SingleInstance |
| 30 | + |
23 | 31 | Dispose any fields/properties that are initialized in `SetUp` or `Test` methods in a `TearDown` method.
|
24 | 32 | Fields/Properties that are initialized in `OneTimeSetUp`, or with initializers or in constructors
|
25 | 33 | must be disposed in `OneTimeTearDown`.
|
26 | 34 |
|
| 35 | +### LifeCycle.InstancePerTestCase |
| 36 | + |
| 37 | +If you have `IDisposable` fields or properties, your class must implement the |
| 38 | +[`IDisposable`](https://learn.microsoft.com/en-us/dotnet/api/system.idisposable?view=net-8.0) interface. |
| 39 | + |
| 40 | +Dispose any fields/properties that are initialized at declaration or in the constructor in the |
| 41 | +[`Dispose`](https://learn.microsoft.com/en-us/dotnet/api/system.idisposable.dispose?view=net-8.0) method. |
| 42 | + |
| 43 | +The NUnit.Analyzer will not help you here as the functionality is available in |
| 44 | +[Microsoft .NET Analyzers](https://www.nuget.org/packages/Microsoft.CodeAnalysis.NetAnalyzers). |
| 45 | +These are the rules that will help you with this: |
| 46 | + |
| 47 | +* [CA1001](https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1001) |
| 48 | +Types that own disposable fields should be disposable |
| 49 | +* [CA2213](https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca2213) |
| 50 | +Disposable fields should be disposed |
| 51 | + |
| 52 | +Unfortunately, those rules are not enabled by default, you can enable them in your project in a |
| 53 | +[`.editorconfig`](https://learn.microsoft.com/en-us/visualstudio/code-quality/use-roslyn-analyzers?view=vs-2022#manually-configure-rule-severity-in-an-editorconfig-file) |
| 54 | + file using the following content: |
| 55 | + |
| 56 | +```xml |
| 57 | +# CA1001: Types that own disposable fields should be disposable |
| 58 | +dotnet_diagnostic.CA1001.severity = warning |
| 59 | +# CA2213: Disposable fields should be disposed |
| 60 | +dotnet_diagnostic.CA2213.severity = warning |
| 61 | +``` |
| 62 | + |
27 | 63 | <!-- start generated config severity -->
|
28 | 64 | ## Configure severity
|
29 | 65 |
|
|
0 commit comments