Skip to content

Commit

Permalink
remove accidental commit of test test
Browse files Browse the repository at this point in the history
  • Loading branch information
tfussell committed Aug 19, 2017
1 parent 4e2c0c0 commit 0ac1210
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions tests/cell/cell_test_suite.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class cell_test_suite : public test_suite
public:
cell_test_suite()
{
register_test(test_temp);
register_test(test_infer_numeric);
register_test(test_constructor);
register_test(test_null);
Expand Down Expand Up @@ -70,25 +69,6 @@ class cell_test_suite : public test_suite
}

private:
void test_temp()
{
xlnt::workbook workbook;
xlnt::worksheet worksheet = workbook.active_sheet();
xlnt::alignment center;
center.horizontal(xlnt::horizontal_alignment::center);
center.vertical(xlnt::vertical_alignment::center);
auto style = workbook.create_style("centered");
style.alignment(center);

for (std::uint32_t row = 1; row < 7000; ++row)
for (std::uint32_t column = 1; column < 13; ++column) {
xlnt::cell cell = worksheet.cell(column, row);
cell.value("test");
cell.style(style);
}

workbook.save("test.xlsx");
}
void test_infer_numeric()
{
xlnt::workbook wb;
Expand Down

0 comments on commit 0ac1210

Please sign in to comment.