5 instantiations of TestSubject
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (5)
Filters\LifecyclePropertyTest.cs (5)
14var subject = new TestSubject { TestProperty = "test-value" }; 29var subject = new TestSubject { TestProperty = "test-value" }; 44var subject = new TestSubject { TestProperty = "test-value" }; 59var subject = new TestSubject { ValueTypeProperty = 42 }; 74var subject = new TestSubject { NullableProperty = 42 };
15 references to TestSubject
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (15)
Filters\LifecyclePropertyTest.cs (15)
12var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.TestProperty)); 14var subject = new TestSubject { TestProperty = "test-value" }; 27var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.TestProperty)); 29var subject = new TestSubject { TestProperty = "test-value" }; 42var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.TestProperty)); 44var subject = new TestSubject { TestProperty = "test-value" }; 57var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.ValueTypeProperty)); 59var subject = new TestSubject { ValueTypeProperty = 42 }; 72var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.NullableProperty)); 74var subject = new TestSubject { NullableProperty = 42 };