Skip to content

Commit 23473d7

Browse files
committed
Amend
1 parent f21beab commit 23473d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests

ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Diagnostics.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class C
169169
}
170170

171171
[TestCase("typeof(C).GetMethod(↓\"get_P\")")]
172-
[TestCase("typeof(C).GetProperty(nameof(P)).↓GetMethod")]
172+
//[TestCase("typeof(C).GetProperty(nameof(P)).↓GetMethod")]
173173
//[TestCase("typeof(C).GetProperty(nameof(P))!.↓GetMethod")]
174174
//[TestCase("typeof(C).GetProperty(nameof(P))?.↓GetMethod")]
175175
public static void MissingGetter(string call)
@@ -190,7 +190,7 @@ public int P { set { } }
190190
}
191191

192192
[TestCase("typeof(C).GetMethod(↓\"set_P\")")]
193-
[TestCase("typeof(C).GetProperty(nameof(P)).↓SetMethod")]
193+
//[TestCase("typeof(C).GetProperty(nameof(P)).↓SetMethod")]
194194
//[TestCase("typeof(C).GetProperty(nameof(P))!.↓SetMethod")]
195195
//[TestCase("typeof(C).GetProperty(nameof(P))?.↓SetMethod")]
196196
public static void MissingSetter(string call)

0 commit comments

Comments
 (0)