use of com.owncloud.android.lib.resources.files.CreateFolderRemoteOperation in project android by nextcloud.
the class FileDataStorageManagerIT method testSaveNewFile_NonExistingParent.
@Test(expected = IllegalArgumentException.class)
public void testSaveNewFile_NonExistingParent() {
assertTrue(new CreateFolderRemoteOperation("/1/1/", true).execute(client).isSuccess());
OCFile newFile = new OCFile("/1/1/1.txt");
sut.saveNewFile(newFile);
}
Aggregations