Skip to content

Commit d080069

Browse files
authored
Merge pull request #57 from fluentassertions/docs/issue-template
Create ISSUE_TEMPLATE.md
2 parents 73d3240 + ea3dc7a commit d080069

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

ISSUE_TEMPLATE.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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.

0 commit comments

Comments
 (0)