(t *testing.T)
| 138 | } |
| 139 | |
| 140 | func TestSetTableColumns(t *testing.T) { |
| 141 | f := NewFile() |
| 142 | assert.Equal(t, newCoordinatesToCellNameError(1, 0), f.setTableColumns("Sheet1", true, 1, 0, 1, nil)) |
| 143 | } |
| 144 | |
| 145 | func TestAutoFilter(t *testing.T) { |
| 146 | outFile := filepath.Join("test", "TestAutoFilter%d.xlsx") |
nothing calls this directly
no test coverage detected