Lines Matching refs:SCUtil
39 import testlib.uno.SCUtil;
112 scDocument = SCUtil.getSCDocument(scComponent); in setUp()
129 SCUtil.clearTempDir(); in tearDownConnection()
155 XSpreadsheet sheet = SCUtil.getCurrentSheet(scDocument); in testCreateDataLabel()
157 SCUtil.setValueToCellRange(sheet, 0, 0, numberData); in testCreateDataLabel()
160 cellAddress[0] = SCUtil.getChartDataRangeByName(sheet, cellRangeName); in testCreateDataLabel()
163 xChartDocument = SCUtil.createChart(sheet, rectangle, cellAddress, chartName); in testCreateDataLabel()
164 SCUtil.setChartType(xChartDocument, inputType); in testCreateDataLabel()
166 SCUtil.setProperties(xChartDocument.getDiagram(), "DataCaption", labelType); in testCreateDataLabel()
168 SCUtil.saveFileAs(scComponent, fileName, fileType); in testCreateDataLabel()
169 scDocument = SCUtil.reloadFile(unoApp, scDocument, fileName + "." + fileType); in testCreateDataLabel()
170 sheet = SCUtil.getCurrentSheet(scDocument); in testCreateDataLabel()
172 xChartDocument = SCUtil.getChartByName(sheet, chartName); in testCreateDataLabel()
173 result = ((Integer) SCUtil.getProperties(xChartDocument.getDiagram(), "DataCaption")).intValue(); in testCreateDataLabel()
174 SCUtil.closeFile(scDocument); in testCreateDataLabel()