We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cf74c3e + 31e8336 commit eb0ee0eCopy full SHA for eb0ee0e
development-guidelines.md
@@ -34,4 +34,25 @@ A query message should end with "Query" and describe the data it returns. e.g.
34
The handlers should match the query message name with the suffix of "Handler". e.g.
35
36
- EventSummaryQueryHandler
37
-- TaskDetailQueryHandler
+- TaskDetailQueryHandler
38
+
39
+### Unit Tests - Naming Conventions
40
41
+**Controller unit tests:**
42
43
+A controller unit test should be named as follows:
44
45
+- "Controllername" ControllerTests
46
47
+So, for instance: AdminControllerTests or GlobalControllerTests
48
49
+**Any other unit tests:**
50
51
+Any other unit tests should be named descriptevelit and end in "Should".
52
53
+Some examples:
54
+- DataReaderExtensionsShould
55
+- FormFileExtensionShould
56
+- ApplicationUserQueryShould
57
58
0 commit comments