@@ -66,7 +66,7 @@ public void cellsPostExportApiTest_chart() throws ApiException {
66
66
HashMap <String ,File > fileMap = new HashMap <String ,File >();
67
67
fileMap .put (AssemblyTestXlsx ,CellsApiUtil .GetFileHolder (AssemblyTestXlsx ) );
68
68
fileMap .put (DataSourceXlsx ,CellsApiUtil .GetFileHolder (DataSourceXlsx ) );
69
- FilesResult response = api .postExport (fileMap , "chart" ,"png" ,null );
69
+ FilesResult response = api .postExport (fileMap , "chart" ,"png" ,null , null );
70
70
71
71
}
72
72
@@ -77,15 +77,15 @@ public void cellsPostExportApiTest_shape() throws ApiException {
77
77
HashMap <String ,File > fileMap = new HashMap <String ,File >();
78
78
fileMap .put (AssemblyTestXlsx ,CellsApiUtil .GetFileHolder (AssemblyTestXlsx ) );
79
79
fileMap .put (DataSourceXlsx ,CellsApiUtil .GetFileHolder (DataSourceXlsx ) );
80
- FilesResult response = api .postExport (fileMap , "shape" ,"png" ,null );
80
+ FilesResult response = api .postExport (fileMap , "shape" ,"png" ,null , null );
81
81
}
82
82
@ Test
83
83
public void cellsPostExportApiTest_picture () throws ApiException {
84
84
85
85
HashMap <String ,File > fileMap = new HashMap <String ,File >();
86
86
fileMap .put (AssemblyTestXlsx ,CellsApiUtil .GetFileHolder (AssemblyTestXlsx ) );
87
87
fileMap .put (DataSourceXlsx ,CellsApiUtil .GetFileHolder (DataSourceXlsx ) );
88
- FilesResult response = api .postExport (fileMap , "picture" ,"png" ,null );
88
+ FilesResult response = api .postExport (fileMap , "picture" ,"png" ,null , null );
89
89
}
90
90
91
91
@ Test
@@ -94,7 +94,7 @@ public void cellsPostExportApiTest_listobject() throws ApiException {
94
94
HashMap <String ,File > fileMap = new HashMap <String ,File >();
95
95
fileMap .put (AssemblyTestXlsx ,CellsApiUtil .GetFileHolder (AssemblyTestXlsx ) );
96
96
fileMap .put (DataSourceXlsx ,CellsApiUtil .GetFileHolder (DataSourceXlsx ) );
97
- FilesResult response = api .postExport (fileMap , "listobject" ,"png" ,null );
97
+ FilesResult response = api .postExport (fileMap , "listobject" ,"png" ,null , null );
98
98
}
99
99
100
100
@ Test
@@ -103,7 +103,7 @@ public void cellsPostExportApiTest_oleobject() throws ApiException {
103
103
HashMap <String ,File > fileMap = new HashMap <String ,File >();
104
104
fileMap .put (AssemblyTestXlsx ,CellsApiUtil .GetFileHolder (AssemblyTestXlsx ) );
105
105
fileMap .put (DataSourceXlsx ,CellsApiUtil .GetFileHolder (DataSourceXlsx ) );
106
- FilesResult response = api .postExport (fileMap , "oleobject" ,"png" ,null );
106
+ FilesResult response = api .postExport (fileMap , "oleobject" ,"png" ,null , null );
107
107
}
108
108
109
109
@ Test
@@ -112,7 +112,7 @@ public void cellsPostExportApiTest_worksheet() throws ApiException {
112
112
HashMap <String ,File > fileMap = new HashMap <String ,File >();
113
113
fileMap .put (AssemblyTestXlsx ,CellsApiUtil .GetFileHolder (AssemblyTestXlsx ) );
114
114
fileMap .put (DataSourceXlsx ,CellsApiUtil .GetFileHolder (DataSourceXlsx ) );
115
- FilesResult response = api .postExport (fileMap , "sheet" ,"png" ,null );
115
+ FilesResult response = api .postExport (fileMap , "sheet" ,"png" ,null , null );
116
116
}
117
117
118
118
@ Test
@@ -121,7 +121,7 @@ public void cellsPostExportApiTest_workbook() throws ApiException {
121
121
HashMap <String ,File > fileMap = new HashMap <String ,File >();
122
122
fileMap .put (AssemblyTestXlsx ,CellsApiUtil .GetFileHolder (AssemblyTestXlsx ) );
123
123
fileMap .put (DataSourceXlsx ,CellsApiUtil .GetFileHolder (DataSourceXlsx ) );
124
- FilesResult response = api .postExport (fileMap , "workbook" ,"png" ,null );
124
+ FilesResult response = api .postExport (fileMap , "workbook" ,"png" ,null , null );
125
125
}
126
126
127
127
}
0 commit comments