// TestTODO
public IITOperationStatus convertFile(File file)
throws JitcaGeneralException {
try {
ResultObject result = this.iTunesCom.callFunction("ConvertFile",
file.getAbsolutePath());
DispatchObject dispatch = result.getDispatch();
return new ITOperationStatusImpl(dispatch);
} catch (DispatchObjectNullException e) {
throw new ConvertOperationFailed(file);
}
}