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 ca66caf commit a792d10Copy full SHA for a792d10
test/AspNet.Security.OAuth.Providers.Tests/Etsy/EtsyAuthenticationOptionsTests.cs
@@ -69,21 +69,6 @@ public static void Validate_Throws_If_UserInformationEndpoint_Is_Null()
69
_ = Assert.Throws<ArgumentNullException>(nameof(options.UserInformationEndpoint), options.Validate);
70
}
71
72
- [Fact]
73
- public static void Validate_Dont_Throws_If_DetailedUserInformationEndpoint_Is_Null()
74
- {
75
- // Arrange
76
- var options = new EtsyAuthenticationOptions()
77
78
- ClientId = "my-client-id",
79
- ClientSecret = "my-client-secret",
80
- DetailedUserInfoEndpoint = null!,
81
- };
82
-
83
- // Act (no Assert)
84
- options.Validate();
85
- }
86
87
[Fact]
88
public static void Validate_Throws_If_CallbackPath_Is_Null()
89
{
0 commit comments