Skip to content

Commit

Permalink
Updated file name in JWT issuer extensibility tests
Browse files Browse the repository at this point in the history
  • Loading branch information
iNinja committed Nov 16, 2024
1 parent b7f8f0f commit 2609624
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
issuerGuid,
CustomIssuerValidationDelegates.CustomIssuerValidatorDelegateAsync,
[
new StackFrame("CustomValidationDelegates.cs", 88),
new StackFrame("CustomIssuerValidationDelegates", 88),
new StackFrame(false),
new StackFrame(false)
])
Expand All @@ -82,7 +82,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
new MessageDetail(
nameof(CustomIssuerValidationDelegates.CustomIssuerValidatorDelegateAsync), null),
typeof(SecurityTokenInvalidIssuerException),
new StackFrame("CustomValidationDelegates.cs", 88),
new StackFrame("CustomIssuerValidationDelegates", 88),
issuerGuid)
});

Expand All @@ -92,7 +92,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
issuerGuid,
CustomIssuerValidationDelegates.CustomIssuerValidatorCustomExceptionDelegateAsync,
[
new StackFrame("CustomValidationDelegates.cs", 107),
new StackFrame("CustomIssuerValidationDelegates", 107),
new StackFrame(false),
new StackFrame(false)
])
Expand All @@ -104,7 +104,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
new MessageDetail(
nameof(CustomIssuerValidationDelegates.CustomIssuerValidatorCustomExceptionDelegateAsync), null),
typeof(CustomSecurityTokenInvalidIssuerException),
new StackFrame("CustomValidationDelegates.cs", 107),
new StackFrame("CustomIssuerValidationDelegates", 107),
issuerGuid),
});

Expand All @@ -114,7 +114,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
issuerGuid,
CustomIssuerValidationDelegates.CustomIssuerValidatorUnknownExceptionDelegateAsync,
[
new StackFrame("CustomValidationDelegates.cs", 139),
new StackFrame("CustomIssuerValidationDelegates", 139),
new StackFrame(false),
new StackFrame(false)
])
Expand All @@ -126,7 +126,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
new MessageDetail(
nameof(CustomIssuerValidationDelegates.CustomIssuerValidatorUnknownExceptionDelegateAsync), null),
typeof(NotSupportedException),
new StackFrame("CustomValidationDelegates.cs", 139),
new StackFrame("CustomIssuerValidationDelegates", 139),
issuerGuid),
});

Expand All @@ -136,7 +136,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
issuerGuid,
CustomIssuerValidationDelegates.CustomIssuerValidatorCustomExceptionCustomFailureTypeDelegateAsync,
[
new StackFrame("CustomValidationDelegates.cs", 123),
new StackFrame("CustomIssuerValidationDelegates", 123),
new StackFrame(false),
new StackFrame(false)
])
Expand All @@ -148,7 +148,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
new MessageDetail(
nameof(CustomIssuerValidationDelegates.CustomIssuerValidatorCustomExceptionCustomFailureTypeDelegateAsync), null),
typeof(CustomSecurityTokenInvalidIssuerException),
new StackFrame("CustomValidationDelegates.cs", 123),
new StackFrame("CustomIssuerValidationDelegates", 123),
issuerGuid,
CustomIssuerValidationError.CustomIssuerValidationFailureType,
null),
Expand All @@ -163,7 +163,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
issuerGuid,
CustomIssuerValidationDelegates.IssuerValidatorDelegateAsync,
[
new StackFrame("CustomValidationDelegates.cs", 169),
new StackFrame("CustomIssuerValidationDelegates", 169),
new StackFrame(false),
new StackFrame(false)
])
Expand All @@ -175,7 +175,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
new MessageDetail(
nameof(CustomIssuerValidationDelegates.IssuerValidatorDelegateAsync), null),
typeof(SecurityTokenInvalidIssuerException),
new StackFrame("CustomValidationDelegates.cs", 169),
new StackFrame("CustomIssuerValidationDelegates", 169),
issuerGuid)
});

Expand All @@ -185,7 +185,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
issuerGuid,
CustomIssuerValidationDelegates.IssuerValidatorCustomIssuerExceptionTypeDelegateAsync,
[
new StackFrame("CustomValidationDelegates.cs", 196),
new StackFrame("CustomIssuerValidationDelegates", 196),
new StackFrame(false),
new StackFrame(false)
])
Expand All @@ -197,7 +197,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
new MessageDetail(
nameof(CustomIssuerValidationDelegates.IssuerValidatorCustomIssuerExceptionTypeDelegateAsync), null),
typeof(CustomSecurityTokenInvalidIssuerException),
new StackFrame("CustomValidationDelegates.cs", 196),
new StackFrame("CustomIssuerValidationDelegates", 196),
issuerGuid)
});

Expand All @@ -207,7 +207,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
issuerGuid,
CustomIssuerValidationDelegates.IssuerValidatorCustomExceptionTypeDelegateAsync,
[
new StackFrame("CustomValidationDelegates.cs", 210),
new StackFrame("CustomIssuerValidationDelegates", 210),
new StackFrame(false),
new StackFrame(false)
])
Expand All @@ -219,7 +219,7 @@ public static TheoryData<IssuerExtensibilityTheoryData> Issuer_ExtensibilityTest
new MessageDetail(
nameof(CustomIssuerValidationDelegates.IssuerValidatorCustomExceptionTypeDelegateAsync), null),
typeof(CustomSecurityTokenException),
new StackFrame("CustomValidationDelegates.cs", 210),
new StackFrame("CustomIssuerValidationDelegates", 210),
issuerGuid)
});

Expand Down

0 comments on commit 2609624

Please sign in to comment.