File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ ### Description
2+
3+ [ Description of the issue]
4+
5+ ### Complete minimal example reproducing the issue
6+
7+ Complete means the code snippet can be copied into a unit test method in a fresh C# project and run.
8+ Minimal means it is stripped from code not related to reproducing the issue.
9+
10+ E.g.
11+
12+ ``` csharp
13+ // Arrange
14+ string input = " MyString" ;
15+
16+ // Act
17+ char result = input [0 ];
18+
19+ // Assert
20+ result .Should ().Be ('M' );
21+ ```
22+
23+ ### Expected behavior:
24+
25+ [ What you expect to happen]
26+
27+ ### Actual behavior:
28+
29+ [ What actually happens]
30+
31+ ### Versions
32+
33+ * Which version of Fluent Assertions Analyzers are you using?
34+ * Which .NET runtime and version are you targeting? E.g. .NET framework 4.6.1 or .NET Core 2.0.
35+
36+ ### Additional Information
37+
38+ Any additional information, configuration or data that might be necessary to reproduce the issue.
You can’t perform that action at this time.
0 commit comments