/trunk/test/testuno/source/fvt/uno/sc/cell/ |
H A D | CellEffectOverline.java | 61 private String[] inputType; field in CellEffectOverline 119 …public CellEffectOverline(int expectedStyle, int expectedColor, String[] inputType, int inputStyle… in CellEffectOverline() argument 122 this.inputType = inputType; in CellEffectOverline() 179 SCUtil.setTextToCell(cells[1], inputType[0]); in testCharOverline() 184 SCUtil.setCellProperties(cells[i], inputType[0], inputStyle); in testCharOverline() 186 SCUtil.setCellProperties(cells[i], inputType[1], true); in testCharOverline() 187 SCUtil.setCellProperties(cells[i], inputType[2], inputColor); in testCharOverline() 197 styleResults[i] = ((Short) SCUtil.getCellProperties(cells[i], inputType[0])).shortValue(); in testCharOverline() 200 hasColor[i] = ((Boolean) SCUtil.getCellProperties(cells[i], inputType[1])).booleanValue(); in testCharOverline() 201 colorResults[i] = ((Integer) SCUtil.getCellProperties(cells[i], inputType[2])).intValue(); in testCharOverline() [all …]
|
H A D | CellEffectUnderline.java | 61 private String[] inputType; field in CellEffectUnderline 118 …public CellEffectUnderline(int expectedStyle, int expectedColor, String[] inputType, int inputStyl… in CellEffectUnderline() argument 121 this.inputType = inputType; in CellEffectUnderline() 178 SCUtil.setTextToCell(cells[1], inputType[0]); in testCharUnderline() 183 SCUtil.setCellProperties(cells[i], inputType[0], inputStyle); in testCharUnderline() 185 SCUtil.setCellProperties(cells[i], inputType[1], true); in testCharUnderline() 186 SCUtil.setCellProperties(cells[i], inputType[2], inputColor); in testCharUnderline() 196 styleResults[i] = ((Short) SCUtil.getCellProperties(cells[i], inputType[0])).shortValue(); in testCharUnderline() 198 hasColor[i] = ((Boolean) SCUtil.getCellProperties(cells[i], inputType[1])).booleanValue(); in testCharUnderline() 199 colorResults[i] = ((Integer) SCUtil.getCellProperties(cells[i], inputType[2])).intValue(); in testCharUnderline() [all …]
|
H A D | CellFontSize.java | 58 private String inputType; field in CellFontSize 84 public CellFontSize(double[] expected, String inputType, double[] inputData, String fileType) { in CellFontSize() argument 86 this.inputType = inputType; in CellFontSize() 140 SCUtil. setTextToCell(cells[1], inputType); in testCellFontSize() 145 SCUtil.setCellProperties(cells[i], inputType, inputData[i]); in testCellFontSize() 154 results[i] = ((Float) SCUtil.getCellProperties(cells[i], inputType)).floatValue(); in testCellFontSize() 158 …assertArrayEquals("Incorrect cell font size(" + inputType + ") value got in ." + fileType + " file… in testCellFontSize()
|
H A D | CellColor.java | 58 private String inputType; field in CellColor 89 public CellColor(int[] expected, String inputType, int[] inputData, String fileType) { in CellColor() argument 91 this.inputType = inputType; in CellColor() 146 SCUtil. setTextToCell(cells[1], inputType); in testCellColor() 151 SCUtil.setCellProperties(cells[i], inputType, inputData[i]); in testCellColor() 160 results[i] = ((Integer) SCUtil.getCellProperties(cells[i], inputType)).intValue(); in testCellColor() 164 …assertArrayEquals("Incorrect cell background color(" + inputType + ") value got in ." + fileType +… in testCellColor()
|
H A D | CellProtected.java | 59 private String inputType; field in CellProtected 87 public CellProtected(Boolean[] expected, String inputType, Boolean[] inputData, String fileType) { in CellProtected() argument 97 this.inputType = inputType; in CellProtected() 151 SCUtil. setTextToCell(cells[1], inputType); in testCellProtected() 156 SCUtil.setCellProperties(cells[i], inputType, inputProtectProps); in testCellProtected() 165 results[i] = (CellProtection) SCUtil.getCellProperties(cells[i], inputType); in testCellProtected()
|
H A D | CellAlignment.java | 61 private String inputType; field in CellAlignment 97 public CellAlignment(Enum expected, String inputType, Enum inputValue, String fileType) { in CellAlignment() argument 99 this.inputType = inputType; in CellAlignment() 161 SCUtil.setCellProperties(cells[i], inputType, inputValue); in testCellAlignment() 170 results[i] = (Enum) SCUtil.getCellProperties(cells[i], inputType); in testCellAlignment() 176 …assertEquals("Incorrect cell alignment(" + inputType + ") value got in ." + fileType + " file.", e… in testCellAlignment()
|
/trunk/test/testuno/source/fvt/uno/sc/chart/ |
H A D | ChartTitle.java | 59 private String inputType; field in ChartTitle 92 public ChartTitle(String[] titles, String inputType, double[][] numberData, String fileType) { in ChartTitle() argument 94 this.inputType = inputType; in ChartTitle() 141 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateMainTitle() 157 SCUtil.setChartType(xChartDocument, inputType); in testCreateMainTitle() 198 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateSubTitle() 214 SCUtil.setChartType(xChartDocument, inputType); in testCreateSubTitle() 259 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testInputTitles() 275 SCUtil.setChartType(xChartDocument, inputType); in testInputTitles()
|
H A D | ChartAxis.java | 58 private String inputType; field in ChartAxis 104 …public ChartAxis(Boolean[] axes, Boolean[] secondaryAxes, String inputType, double[][] numberData,… in ChartAxis() argument 107 this.inputType = inputType; in ChartAxis() 158 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateXYAxes() 174 SCUtil.setChartType(xChartDocument, inputType); in testCreateXYAxes() 239 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateXYZAxes() 255 SCUtil.setChartType(xChartDocument, inputType); in testCreateXYZAxes()
|
H A D | ChartGrid.java | 58 private String inputType; field in ChartGrid 104 …public ChartGrid(Boolean[] majorGrids, Boolean[] minorGrids, String inputType, double[][] numberDa… in ChartGrid() argument 107 this.inputType = inputType; in ChartGrid() 158 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateXYGrid() 174 SCUtil.setChartType(xChartDocument, inputType); in testCreateXYGrid() 230 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateXYZGrid() 246 SCUtil.setChartType(xChartDocument, inputType); in testCreateXYZGrid()
|
H A D | ChartType.java | 55 private String inputType; field in ChartType 102 public ChartType(String expected, String inputType, double[][] numberData, String fileType) { in ChartType() argument 104 this.inputType = inputType; in ChartType() 148 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateChart() 165 SCUtil.setChartType(xChartDocument, inputType); in testCreateChart()
|
H A D | ChartDataLabel.java | 56 private String inputType; field in ChartDataLabel 101 public ChartDataLabel(int labelType, String inputType, double[][] numberData, String fileType) { in ChartDataLabel() argument 103 this.inputType = inputType; in ChartDataLabel() 148 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateDataLabel() 164 SCUtil.setChartType(xChartDocument, inputType); in testCreateDataLabel()
|
H A D | ChartMeanValueLine.java | 59 private String inputType; field in ChartMeanValueLine 90 …public ChartMeanValueLine(Boolean expected, Boolean meanValueLine, String inputType, double[][] nu… in ChartMeanValueLine() argument 93 this.inputType = inputType; in ChartMeanValueLine() 137 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateTrendline() 153 SCUtil.setChartType(xChartDocument, inputType); in testCreateTrendline()
|
H A D | ChartTrendline.java | 59 private String inputType; field in ChartTrendline 93 …ssionCurveType expected, ChartRegressionCurveType trendlineType, String inputType, double[][] numb… in ChartTrendline() argument 96 this.inputType = inputType; in ChartTrendline() 140 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateTrendline() 156 SCUtil.setChartType(xChartDocument, inputType); in testCreateTrendline()
|
H A D | ChartLegend.java | 59 private String inputType; field in ChartLegend 93 public ChartLegend(String inputType, double[][] numberData, int[] offset, String fileType) { in ChartLegend() argument 94 this.inputType = inputType; in ChartLegend() 154 SCUtil.setChartType(xChartDocument, inputType); in testDisableLegend() 205 SCUtil.setChartType(xChartDocument, inputType); in testLegendPosition()
|
H A D | ChartYErrorBar.java | 62 private String inputType; field in ChartYErrorBar 98 …rCategory inputCategory, ChartErrorIndicatorType inputIndicator, String inputType, double[][] numb… in ChartYErrorBar() argument 103 this.inputType = inputType; in ChartYErrorBar() 148 if (inputType.equals("com.sun.star.chart.StockDiagram")) { in testCreateYErrorBar() 164 SCUtil.setChartType(xChartDocument, inputType); in testCreateYErrorBar()
|
/trunk/test/testuno/source/fvt/uno/sc/object/ |
H A D | DrawingObject.java | 60 private String inputType; field in DrawingObject 88 public DrawingObject( String inputType, String fileType) { in DrawingObject() argument 90 this.inputType = inputType; in DrawingObject() 133 String fileName = inputType; in testDrawingObject() 145 XShape xShape = ShapeUtil.createShape(scComponent, po, Si, inputType); in testDrawingObject() 167 assertEquals("Verify shape type is correct.",inputType, xShape.getShapeType()); in testDrawingObject()
|