3 writes to TestProperty
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (3)
Filters\LifecyclePropertyTest.cs (3)
14var subject = new TestSubject { TestProperty = "test-value" }; 29var subject = new TestSubject { TestProperty = "test-value" }; 44var subject = new TestSubject { TestProperty = "test-value" };
5 references to TestProperty
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (5)
Filters\LifecyclePropertyTest.cs (5)
12var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.TestProperty)); 27var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.TestProperty)); 35Assert.Equal("new-value", subject.TestProperty); 42var propertyInfo = typeof(TestSubject).GetProperty(nameof(TestSubject.TestProperty)); 50Assert.Null(subject.TestProperty);