public void EnableIntrospectionEndpoint_IntrospectionEndpointIsEnabled() { // Arrange var services = CreateServices(); var builder = new OpenIddictBuilder(services); // Act builder.EnableIntrospectionEndpoint("/endpoint-path"); var options = GetOptions(services); // Assert Assert.Equal("/endpoint-path", options.IntrospectionEndpointPath); }
public void EnableIntrospectionEndpoint_IntrospectionEndpointIsEnabled() { // Arrange var services = new ServiceCollection(); services.AddOptions(); var builder = new OpenIddictBuilder(services); // Act builder.EnableIntrospectionEndpoint("/endpoint-path"); var provider = services.BuildServiceProvider(); var options = provider.GetRequiredService <IOptions <OpenIddictOptions> >(); // Assert Assert.Equal("/endpoint-path", options.Value.IntrospectionEndpointPath); }