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

paulmthompson / WhiskerToolbox / 18685379784

21 Oct 2025 01:25PM UTC coverage: 72.522% (+0.1%) from 72.391%
18685379784

push

github

paulmthompson
fix failing tests

18 of 40 new or added lines in 1 file covered. (45.0%)

1765 existing lines in 32 files now uncovered.

53998 of 74457 relevant lines covered (72.52%)

46177.73 hits per line

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

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

4
#include <QPushButton>
5

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

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

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

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

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

27
bool TableExportWidget::isHeaderIncluded() const {
×
28
    return ui->export_header_checkbox && ui->export_header_checkbox->isChecked();
×
29
}
30

UNCOV
31
bool TableExportWidget::isExportByGroup() const {
×
UNCOV
32
    return ui->export_by_group_checkbox && ui->export_by_group_checkbox->isChecked();
×
33
}
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