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

    String actTestStop = bmUrlManager.masterStop(appKey, userKey, testId);
    Assert.assertEquals(expTestStop, actTestStop);
  }