@Test
  public void testGetBSSWebServiceUrl_SAML_SP() throws Exception {
    // given
    String baseUrl = "http://127.0.0.1:8080/test";
    Mockito.doReturn(baseUrl)
        .when(configService)
        .getProxyConfigurationSetting(PlatformConfigurationKey.BSS_STS_WEBSERVICE_URL);
    Mockito.doReturn("SAML_SP")
        .when(configService)
        .getProxyConfigurationSetting(PlatformConfigurationKey.BSS_AUTH_MODE);
    // when
    String webServiceUrl = platformService.getBSSWebServiceUrl();

    // then
    assertEquals(baseUrl, webServiceUrl);
  }