Home
last modified time | relevance | path

Searched refs:getCellTexts (Results 1 – 6 of 6) sorted by relevance

/trunk/test/testgui/source/fvt/gui/sc/sort/
H A DSortDialogSetting.java86 … assertArrayEquals("Wrong Sorted result", expectedSortedResult, SCTool.getCellTexts("A2:A6")); in testSortOptionsCaseSensitive()
90 assertArrayEquals("Wrong Undo sorted result", data, SCTool.getCellTexts("A2:A6")); in testSortOptionsCaseSensitive()
92 … assertArrayEquals("Wrong Redo sorted result", expectedSortedResult, SCTool.getCellTexts("A2:A6")); in testSortOptionsCaseSensitive()
99 … assertArrayEquals("Saved sorted result", expectedSortedResult, SCTool.getCellTexts("A2:A6")); in testSortOptionsCaseSensitive()
124 …assertArrayEquals("Copy sorted result to", expectedSortedResult, SCTool.getCellTexts("$Sheet3.$A4:… in testSortOptionsCopyResultTo()
130 …assertArrayEquals("Redo sorted result", expectedSortedResult, SCTool.getCellTexts("$Sheet3.$A4:$B9… in testSortOptionsCopyResultTo()
148 …uals("Copy sorted result to cell range", expectedSortedResult, SCTool.getCellTexts("$Sheet2.$A1:$B… in testSortOptionsCopyResultTo()
154 …assertArrayEquals("Redo sorted result", expectedSortedResult, SCTool.getCellTexts("$Sheet2.$A1:$B6… in testSortOptionsCopyResultTo()
162 …assertArrayEquals("Saved sorted result", expectedSortedResult, SCTool.getCellTexts("$Sheet3.$A4:$B… in testSortOptionsCopyResultTo()
163 …als("Saved sorted result to cell range", expectedSortedResult, SCTool.getCellTexts("$Sheet2.$A1:$B… in testSortOptionsCopyResultTo()
[all …]
/trunk/test/testgui/source/fvt/gui/sc/subtotals/
H A DSubtotalsFunctions.java78 SCTool.getCellTexts("A1:E11")); in testAverage()
97 SCTool.getCellTexts("A1:E11")); in testCountNumbersOnly()
115 SCTool.getCellTexts("A1:E11")); in testMax()
133 SCTool.getCellTexts("A1:E11")); in testMin()
151 SCTool.getCellTexts("A1:E11")); in testProduct()
170 SCTool.getCellTexts("A1:E11")); in testStDevPPopulation()
188 SCTool.getCellTexts("A1:E11")); in testSum()
206 SCTool.getCellTexts("A1:E11")); in testVarSample()
226 { "", "110", "", "Grand Total", "" } }, SCTool.getCellTexts("A1:E12")); in testDoNotSortOption()
279 SCTool.getCellTexts("A1:E23")); in testUsingAllGroup()
[all …]
/trunk/test/testgui/source/bvt/gui/
H A DBasicFunctionTest.java381 assertArrayEquals("Fill Down:", expected1, SCTool.getCellTexts("C5:C10")); in testFillInSpreadsheet()
387 assertArrayEquals("Fill Up:", expected2, SCTool.getCellTexts("D5:D10")); in testFillInSpreadsheet()
393 assertArrayEquals("Fill Right:", expected3, SCTool.getCellTexts("A1:D1")); in testFillInSpreadsheet()
399 assertArrayEquals("Fill left:", expected4, SCTool.getCellTexts("A2:D2")); in testFillInSpreadsheet()
408 assertArrayEquals("Fill series..", expected5, SCTool.getCellTexts("E1:F5")); in testFillInSpreadsheet()
438 assertArrayEquals("Sorted Data", expected1, SCTool.getCellTexts("A1:A10")); in testSort()
460 assertArrayEquals("Sorted Data", expected2, SCTool.getCellTexts("B1:C10")); in testSort()
470 assertArrayEquals("Sorted Data", expected3, SCTool.getCellTexts("D1:D7")); in testSort()
477 assertArrayEquals("Sorted Data", expected4, SCTool.getCellTexts("E1:E10")); in testSort()
/trunk/test/testgui/source/fvt/gui/sc/cell/
H A DCells.java78 expectedShiftCellDownResult, SCTool.getCellTexts("A1:B3")); in testShiftRowandColumn()
94 expectedShiftCellRightResult, SCTool.getCellTexts("A1:C2")); in testShiftRowandColumn()
112 expectedEntireRowResult, SCTool.getCellTexts("A1:B3")); in testShiftRowandColumn()
132 expectedEntireColumnResult, SCTool.getCellTexts("A1:C2")); in testShiftRowandColumn()
/trunk/test/testgui/source/fvt/gui/sc/rowcolumn/
H A DInsertRowAndColumn.java76 …s("Verify results after inserting one row", expectedInsertRowResult, SCTool.getCellTexts("A1:B3")); in testInsertEntireRowColumn()
86 …ify results after inserting one column", expectedInsertColumnResult, SCTool.getCellTexts("A1:C3")); in testInsertEntireRowColumn()
/trunk/test/testgui/source/testlib/gui/
H A DSCTool.java181 public static String[][] getCellTexts(String range) { in getCellTexts() method in SCTool