public void Configure(IApplicationBuilder app, IHostingEnvironment env) | |
{ | |
//other configurations removed for brevity. | |
ImpostersAsMockConfiguration mockConfiguration = | |
new ImpostersAsMockConfiguration(new MockImpostersBuilder() | |
.CreateMockImposters(), | |
new MocksDataStore() | |
.Create()); | |
app.UseMockImposters(mockConfiguration); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment