@Test
  public void testGetBopsId() {

    // Given
    when(usdIssuesService.getBopsId(anyString())).thenReturn("asdf");

    // When
    String id = notificationService.getBopsId("ewiljfaölj");

    // Then
    assertEquals("asdf", id);
  }