Skip to content

Commit

Permalink
SAVEPOINT
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisdoomen committed Jan 7, 2024
1 parent 6a3d548 commit 0334ec1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using JetBrains.Annotations;
using Xunit;
using Xunit.Sdk;

Expand Down Expand Up @@ -189,10 +190,13 @@ public void When_a_field_is_internal_and_it_should_be_included_it_should_fail_th

private class ClassWithInternalField
{
[UsedImplicitly]
public string PublicField;

[UsedImplicitly]
internal string InternalField;

[UsedImplicitly]
protected internal string ProtectedInternalField;
}

Expand Down Expand Up @@ -261,8 +265,10 @@ public ClassWithPrivateProtectedField(string name, int value)
this.value = value;
}

[UsedImplicitly]
public string Name;

[UsedImplicitly]
private protected int value;
}
}
Expand Down

0 comments on commit 0334ec1

Please sign in to comment.