We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e9f60 commit e5d4eb0Copy full SHA for e5d4eb0
src/Tests/ConstantExpectedTests.cs
@@ -1,13 +1,13 @@
1
[TestFixture]
2
public class ConstantExpectedTests
3
{
4
- public static void Method([ConstantExpected] int b) { }
5
- public static void MethodWithMinMax([ConstantExpected(Min = -5, Max = 10)] int b) { }
+ public void Method([ConstantExpected] int b) { }
+ public void MethodWithMinMax([ConstantExpected(Min = -5, Max = 10)] int b) { }
6
7
// Invalid declaration
8
- // public static void InvalidRange([ConstantExpected(Min = 5, Max = -5)] int b) { }
+ // public void InvalidRange([ConstantExpected(Min = 5, Max = -5)] int b) { }
9
10
- public static void Test(int variableNum)
+ public void Test(int variableNum)
11
12
// Valid calls
13
const int constNum = 10;
0 commit comments