@Test
  public void testTerminate_masters() {
    String expTestTerminate =
        bmUrlManager.getServerUrl()
            + "/api/latest/masters/"
            + testId
            + "/terminate?api_key="
            + userKey
            + "&app_key="
            + appKey
            + UrlManager.CLIENT_IDENTIFICATION;

    String actTestTerminate = bmUrlManager.testTerminate(appKey, userKey, testId);
    Assert.assertEquals(expTestTerminate, actTestTerminate);
  }