12 references to TestApiController
Microsoft.AspNetCore.Mvc.Core.Test (12)
ApplicationModels\ApiBehaviorApplicationModelProviderTest.cs (12)
19var actionName = $"{typeof(TestApiController).FullName}.{nameof(TestApiController.TestAction)} ({typeof(TestApiController).Assembly.GetName().Name})"; 22var controllerModel = new ControllerModel(typeof(TestApiController).GetTypeInfo(), new[] { new ApiControllerAttribute() }); 23var method = typeof(TestApiController).GetMethod(nameof(TestApiController.TestAction)); 44var controllerModel = new ControllerModel(typeof(TestApiController).GetTypeInfo(), new[] { new ApiControllerAttribute() }) 49var method = typeof(TestApiController).GetMethod(nameof(TestApiController.TestAction)); 87var controllerModel = new ControllerModel(typeof(TestApiController).GetTypeInfo(), new[] { new ApiControllerAttribute() }) 92var method = typeof(TestApiController).GetMethod(nameof(TestApiController.TestActionWithIResult));