Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/custom auth provider plugpoint #160

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
added display names to tests
nilaysundarkar committed May 13, 2024
commit bae395e695f660aa958235b0319611714db6d677
Original file line number Diff line number Diff line change
@@ -66,6 +66,7 @@ void testExceptions() {
}

@Test
@DisplayName("Test CustomCredentialProvider initialization")
void testInitializeCustomCredentialProvider() {
Map<String, Object> props = new HashMap<>();
props.put(CustomCredentialProviderConstants.CUSTOM_AUTH_ENABLE_CONFIG, true);
@@ -79,6 +80,7 @@ void testInitializeCustomCredentialProvider() {
}

@Test
@DisplayName("Test CustomCredentialProvider custom props initialization")
void testCustomPropsInit() {
Map<String, Object> props = new HashMap<>();
props.put(CustomCredentialProviderConstants.CUSTOM_AUTH_ENABLE_CONFIG, true);
@@ -93,6 +95,7 @@ void testCustomPropsInit() {
}

@Test
@DisplayName("Test CustomCredentialProvider custom props validation")
void testCustomPropsValidate() {
Map<String, Object> props = new HashMap<>();
props.put(CustomCredentialProviderConstants.CUSTOM_AUTH_ENABLE_CONFIG, true);