2 instantiations of Child
Microsoft.DotNet.XUnitAssert.Tests (2)
Asserts\Sdk\AssertHelperTests.cs (2)
144 public Child ParentField = new(); 146 public Child ParentProperty { get; } = new();
8 references to Child
Microsoft.DotNet.XUnitAssert.Tests (8)
Asserts\Sdk\AssertHelperTests.cs (8)
11 var expression = (Expression<Func<Child, object?>>)null!; 24 (Expression<Func<Child, object?>>)(c => c.Property), 41 (Expression<Func<Child, object?>>)(c => c.Field), 72 var expression = (Expression<Func<Child, object?>>)(c => c.Method()); 96 var expression = (Expression<Func<Child, object?>>)(c => c[0]); 122 var expression = (Expression<Func<Child, object?>>)(c => foo.Length); 144 public Child ParentField = new(); 146 public Child ParentProperty { get; } = new();