1 write to ViewNotFound
Microsoft.AspNetCore.Mvc.TestDiagnosticListener (1)
TestDiagnosticListener.cs (1)
223ViewNotFound = new OnViewNotFoundEventData()
10 references to ViewNotFound
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (10)
PartialViewResultExecutorTest.cs (5)
273Assert.NotNull(listener.ViewNotFound); 274Assert.NotNull(listener.ViewNotFound.ActionContext); 275Assert.NotNull(listener.ViewNotFound.Result); 276Assert.Equal(new string[] { "location/myview" }, listener.ViewNotFound.SearchedLocations); 277Assert.Equal("myview", listener.ViewNotFound.ViewName);
ViewResultExecutorTest.cs (5)
268Assert.NotNull(listener.ViewNotFound); 269Assert.NotNull(listener.ViewNotFound.ActionContext); 270Assert.NotNull(listener.ViewNotFound.Result); 271Assert.Equal(new string[] { "location/myview" }, listener.ViewNotFound.SearchedLocations); 272Assert.Equal("myview", listener.ViewNotFound.ViewName);