@Before
 public void setUp() throws Exception {
   testData = TestDataBuilder.getTestData("getObjectByPathTestData");
   folderObjectId = getFolderObjectId();
   documentObjectId = getDocumentObjectId(folderObjectId.getId());
   path = "/" + testData.get("folderName") + "/" + testData.get("filename");
 }
  @Category({FunctionalTests.class})
  @Test
  public void deleteAddress() throws Exception {
    String applicationId = createApplication();
    String number = TestDataBuilder.getAddressNumber();

    String response = getConnector().deleteAddress(applicationId, number);
    assertNotNull(response);

    assertNotNull(applicationId);
  }
  @Before
  public void setUp() throws Exception {
    testData = TestDataBuilder.getTestData("folderTestData");
    subFoldersNames = (List<String>) testData.get("subfolders");
    folderObjectId = getFolderObjectId();

    for (String subFolder : subFoldersNames) {
      ObjectId subFolderId = getConnector().createFolder(subFolder, folderObjectId.getId());
      subFoldersIds.add(subFolderId.getId());
    }
  }
 @Before
 public void setUp() throws Exception {
   testData = TestDataBuilder.getTestData("deleteTreeTestData");
   folderObjectId = getFolderObjectId();
   documentObjectId = getDocumentObjectId(folderObjectId.getId());
 }