public void setTextTiming(int rows, int columns) {
   resetTimer();
   HTMLTable HTMLTable = createTable(rows, columns);
   for (int row = 0; row < rows; row++) {
     for (int column = 0; column < columns; column++) {
       HTMLTable.setText(row, column, "test");
     }
   }
   timing(" setText(" + rows + "," + columns + ")");
 }