• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

paulmthompson / WhiskerToolbox / 17826420298

18 Sep 2025 02:24AM UTC coverage: 71.942% (-0.002%) from 71.944%
17826420298

push

github

paulmthompson
Merge branch 'main' of https://github.com/paulmthompson/WhiskerToolbox

110 of 158 new or added lines in 12 files covered. (69.62%)

222 existing lines in 9 files now uncovered.

39625 of 55079 relevant lines covered (71.94%)

1301.53 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

42.86
/src/WhiskerToolbox/TableDesignerWidget/TableExportWidget.cpp
1
#include "TableExportWidget.hpp"
2
#include "ui_TableExportWidget.h"
3

4
#include <QPushButton>
5

6
TableExportWidget::TableExportWidget(QWidget * parent)
16✔
7
    : QWidget(parent),
8
      ui(new Ui::TableExportWidget) {
16✔
9
    ui->setupUi(this);
16✔
10
    connect(ui->export_csv_btn, &QPushButton::clicked, this, &TableExportWidget::exportClicked);
16✔
11
}
16✔
12

13
TableExportWidget::~TableExportWidget() { delete ui; }
32✔
14

UNCOV
15
QString TableExportWidget::getDelimiterText() const {
×
16
    return ui->export_delimiter_combo ? ui->export_delimiter_combo->currentText() : QString("Comma");
×
17
}
18

UNCOV
19
QString TableExportWidget::getLineEndingText() const {
×
20
    return ui->export_line_ending_combo ? ui->export_line_ending_combo->currentText() : QString("LF (\\n)");
×
21
}
22

UNCOV
23
int TableExportWidget::getPrecision() const {
×
24
    return ui->export_precision_spinbox ? ui->export_precision_spinbox->value() : 3;
×
25
}
26

UNCOV
27
bool TableExportWidget::isHeaderIncluded() const {
×
28
    return ui->export_header_checkbox && ui->export_header_checkbox->isChecked();
×
29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc