Lines Matching refs:SCUtil

37 import testlib.uno.SCUtil;
129 scDocument = SCUtil.getSCDocument(scComponent); in test()
130 XSpreadsheet currentsheet = SCUtil.getCurrentSheet(scDocument); in test()
161 SCUtil.getValueFromCell(currentsheet, 2, 4), 0.000000001); in test()
162 assertEquals(BSsubtotals, SCUtil.getFormulaFromCell(currentsheet, 2, 4)); in test()
164 SCUtil.getTextFromCell(currentsheet, 0, 4)); in test()
171 SCUtil.getValueFromCell(currentsheet, 2, 7), 0.000000001); in test()
172 assertEquals(CSsubtotals, SCUtil.getFormulaFromCell(currentsheet, 2, 7)); in test()
174 SCUtil.getTextFromCell(currentsheet, 0, 7)); in test()
181 SCUtil.getValueFromCell(currentsheet, 2, 10), 0.000000001); in test()
183 SCUtil.getFormulaFromCell(currentsheet, 2, 10)); in test()
185 SCUtil.getTextFromCell(currentsheet, 0, 10)); in test()
191 assertEquals(grandtotal, SCUtil.getValueFromCell(currentsheet, 2, 11), in test()
194 SCUtil.getFormulaFromCell(currentsheet, 2, 11)); in test()
196 SCUtil.getTextFromCell(currentsheet, 0, 11)); in test()
199 SCUtil.saveFileAs(scComponent, "Subtotals", "ods"); in test()
200 XSpreadsheetDocument scDocumentTemp = SCUtil.reloadFile(unoApp, in test()
203 currentsheet = SCUtil.getCurrentSheet(scDocument); in test()
211 SCUtil.getValueFromCell(currentsheet, 2, 4), 0.000000001); in test()
212 assertEquals(BSsubtotals, SCUtil.getFormulaFromCell(currentsheet, 2, 4)); in test()
214 SCUtil.getTextFromCell(currentsheet, 0, 4)); in test()
221 SCUtil.getValueFromCell(currentsheet, 2, 7), 0.000000001); in test()
222 assertEquals(CSsubtotals, SCUtil.getFormulaFromCell(currentsheet, 2, 7)); in test()
224 SCUtil.getTextFromCell(currentsheet, 0, 7)); in test()
231 SCUtil.getValueFromCell(currentsheet, 2, 10), 0.000000001); in test()
233 SCUtil.getFormulaFromCell(currentsheet, 2, 10)); in test()
235 SCUtil.getTextFromCell(currentsheet, 0, 10)); in test()
241 assertEquals(grandtotal, SCUtil.getValueFromCell(currentsheet, 2, 11), in test()
244 SCUtil.getFormulaFromCell(currentsheet, 2, 11)); in test()
246 SCUtil.getTextFromCell(currentsheet, 0, 11)); in test()