We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53139a1 commit de74ae4Copy full SHA for de74ae4
tests/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs
@@ -278,6 +278,8 @@ protected void ConfigureServices(IServiceCollection services)
278
279
// Adds Umbraco.Tests.Integration
280
mvcBuilder.AddApplicationPart(typeof(UmbracoTestServerTestBase).Assembly);
281
+
282
+ CustomMvcSetup(mvcBuilder);
283
})
284
.AddWebServer()
285
.AddWebsite()
@@ -294,6 +296,11 @@ protected void ConfigureServices(IServiceCollection services)
294
296
builder.Build();
295
297
}
298
299
+ protected virtual void CustomMvcSetup(IMvcBuilder mvcBuilder)
300
+ {
301
302
+ }
303
304
/// <summary>
305
/// Hook for registering test doubles.
306
/// </summary>
0 commit comments