String localpath = "src/main/resources/";
TestUtil.create200MBFile(localpath + localFile);
String remoteFileName = localFile;
File inputFile = new File(localpath + localFile);
InputStream inpStream = new FileInputStream(inputFile);
service.uploadFile(300, remoteFileName, inpStream);
inpStream.close();
FileUtility.deleteFile(localpath + localFile);
FileUtility.waitExists(TestConstants.filServiceLocation2 + remoteFileName, 0);
FileUtility.deleteFile(TestConstants.filServiceLocation2 + remoteFileName);
}