use of com.mercedesbenz.sechub.owaspzapwrapper.config.auth.AuthenticationType in project sechub by mercedes-benz.
the class SecHubWebScanConfigurationHelperTest method determines_AuthenticationType_from_empty_sechub_config_correctly.
@Test
void determines_AuthenticationType_from_empty_sechub_config_correctly() {
/* execute */
AuthenticationType authTypeNewConfig = helperToTest.determineAuthenticationType(new SecHubWebScanConfiguration());
/* test */
assertEquals(authTypeNewConfig, AuthenticationType.UNAUTHENTICATED);
}
Aggregations