All: Reformat according to new standard

This commit is contained in:
pre-commit-ci[bot]
2025-11-11 13:49:01 +01:00
committed by Kacper Donat
parent ef997f2259
commit 9fe130cd73
2390 changed files with 154630 additions and 115818 deletions

View File

@@ -99,10 +99,12 @@ UnitTestDialog::~UnitTestDialog() = default;
void UnitTestDialog::setupConnections()
{
connect(ui->treeViewFailure,
&QTreeWidget::itemDoubleClicked,
this,
&UnitTestDialog::onTreeViewFailureItemDoubleClicked);
connect(
ui->treeViewFailure,
&QTreeWidget::itemDoubleClicked,
this,
&UnitTestDialog::onTreeViewFailureItemDoubleClicked
);
connect(ui->helpButton, &QPushButton::clicked, this, &UnitTestDialog::onHelpButtonClicked);
connect(ui->aboutButton, &QPushButton::clicked, this, &UnitTestDialog::onAboutButtonClicked);
connect(ui->startButton, &QPushButton::clicked, this, &UnitTestDialog::onStartButtonClicked);
@@ -113,14 +115,16 @@ void UnitTestDialog::setupConnections()
*/
void UnitTestDialog::setProgressColor(const QColor& col)
{
QString qss = QStringLiteral("QProgressBar {\n"
" border: 2px solid grey;\n"
" border-radius: 5px;\n"
"}\n"
"\n"
"QProgressBar::chunk {\n"
" background-color: %1;\n"
"}")
QString qss = QStringLiteral(
"QProgressBar {\n"
" border: 2px solid grey;\n"
" border-radius: 5px;\n"
"}\n"
"\n"
"QProgressBar::chunk {\n"
" background-color: %1;\n"
"}"
)
.arg(col.name());
ui->progressBar->setStyleSheet(qss);
}
@@ -164,7 +168,8 @@ void UnitTestDialog::onHelpButtonClicked()
tr("Enter the name of a callable object which, when called, will return a TestCase.\n"
"Click 'start', and the test thus produced will be run.\n\n"
"Double click on an error in the tree view to see more information about it, "
"including the stack trace."));
"including the stack trace.")
);
}
/**
@@ -177,7 +182,8 @@ void UnitTestDialog::onAboutButtonClicked()
tr("About FreeCAD UnitTest"),
tr("Copyright (c) Werner Mayer\n\n"
"FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for "
"ones own modules."));
"ones own modules.")
);
}
/**
@@ -189,11 +195,13 @@ void UnitTestDialog::onStartButtonClicked()
setProgressColor(QColor(40, 210, 43)); // a darker green
ui->startButton->setDisabled(true);
try {
Base::Interpreter().runString("import qtunittest, gc\n"
"__qt_test__=qtunittest.QtTestRunner(0,\"\")\n"
"__qt_test__.runClicked()\n"
"del __qt_test__\n"
"gc.collect()\n");
Base::Interpreter().runString(
"import qtunittest, gc\n"
"__qt_test__=qtunittest.QtTestRunner(0,\"\")\n"
"__qt_test__.runClicked()\n"
"del __qt_test__\n"
"gc.collect()\n"
);
}
catch (const Base::PyException& e) {
std::string msg = e.what();