You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MM0005 | Usage | Error | Static abstract members not supported, [Documentation](https://github.com/oswaldsql/MiniMock/blob/main/Documentation/AnalyzerRules/MM0005.md)
11
-
MM0006 | Usage | Error | Can not create mock for a sealed class, [Documentation](https://github.com/oswaldsql/MiniMock/blob/main/Documentation/AnalyzerRules/MM0006.md)
MM0005 | Usage | Error | Static abstract members not supported, [Documentation](https://github.com/oswaldsql/MiniMock/blob/main/Documentation/AnalyzerRules/MM0005.md)
11
+
MM0006 | Usage | Error | Can not create mock for a sealed class, [Documentation](https://github.com/oswaldsql/MiniMock/blob/main/Documentation/AnalyzerRules/MM0006.md)
Copy file name to clipboardExpand all lines: src/MiniMock/Builders/Documentation.cs
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,16 @@ namespace MiniMock.Builders;
3
3
internalstaticclassDocumentation
4
4
{
5
5
internalconststringCallBack="Configures the mock to execute the specified action when the method matching the signature is called.";
6
-
internalconststringAcceptAny="Configures the mock to accept any call to the method ignoring all parameters.";
6
+
7
+
internalconststringAcceptAny="Configures the mock to accept any call to the method.";
8
+
7
9
internalconststringThrowsException="Configures the mock to throw the specified exception when the method is called.";
8
-
internalconststringSpecificValue="Configures the mock to return the specific value ignoring all parameters.";
10
+
11
+
internalconststringSpecificValue="Configures the mock to return the specific value.";
12
+
9
13
internalconststringSpecificValueList="Configures the mock to return the consecutive values from an enumeration of values.";
10
-
internalconststringGenericTaskObject="Configures the mock to return the specific value wrapped in a task object ignoring all parameters.";
14
+
15
+
internalconststringGenericTaskObject="Configures the mock to return the specific value in a task object.";
16
+
11
17
internalconststringGenericTaskFunction="Configures the mock to call the specified function and return the value wrapped in a task object when the method matching the signature is called.";
0 commit comments