1 write to ViewFound
Microsoft.AspNetCore.Mvc.TestDiagnosticListener (1)
TestDiagnosticListener.cs (1)
194ViewFound = new OnViewFoundEventData()
12 references to ViewFound
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (12)
PartialViewResultExecutorTest.cs (6)
230Assert.NotNull(listener.ViewFound); 231Assert.NotNull(listener.ViewFound.ActionContext); 232Assert.NotNull(listener.ViewFound.Result); 233Assert.NotNull(listener.ViewFound.View); 234Assert.False(listener.ViewFound.IsMainPage); 235Assert.Equal("myview", listener.ViewFound.ViewName);
ViewResultExecutorTest.cs (6)
226Assert.NotNull(listener.ViewFound); 227Assert.NotNull(listener.ViewFound.ActionContext); 228Assert.NotNull(listener.ViewFound.Result); 229Assert.NotNull(listener.ViewFound.View); 230Assert.True(listener.ViewFound.IsMainPage); 231Assert.Equal("myview", listener.ViewFound.ViewName);