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