This repository has been archived by the owner on Aug 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added templates for next test classes
- Loading branch information
juliagoda
committed
Nov 5, 2019
1 parent
4fd9457
commit 1bcf412
Showing
16 changed files
with
199 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include "addeditautoprofiledialog.h" | ||
|
||
#include <QtTest/QtTest> | ||
|
||
|
||
class TestAddEditAutoProfileDialog: public QObject | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
TestAddEditAutoProfileDialog(QObject* parent = 0); | ||
|
||
private slots: | ||
|
||
private: | ||
AddEditAutoProfileDialog addEditAutoProfileDialog; | ||
}; | ||
|
||
TestAddEditAutoProfileDialog::TestAddEditAutoProfileDialog(QObject* parent) : | ||
QObject(parent), | ||
addEditAutoProfileDialog() | ||
{ | ||
QTestEventLoop::instance().enterLoop(1); | ||
} | ||
|
||
// QTEST_MAIN(TestAddEditAutoProfileDialog) | ||
#include "testaddeditautoprofiledialog.moc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include "advancebuttondialog.h" | ||
|
||
#include <QtTest/QtTest> | ||
|
||
|
||
class TestAdvanceButtonDialog: public QObject | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
TestAdvanceButtonDialog(QObject* parent = 0); | ||
|
||
private slots: | ||
|
||
private: | ||
AdvanceButtonDialog advanceButtonDialog; | ||
}; | ||
|
||
TestAdvanceButtonDialog::TestAdvanceButtonDialog(QObject* parent) : | ||
QObject(parent), | ||
advanceButtonDialog() | ||
{ | ||
QTestEventLoop::instance().enterLoop(1); | ||
} | ||
|
||
// QTEST_MAIN(TestAdvanceButtonDialog) | ||
#include "testadvancebuttondialog.moc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#include "advancestickassignmentdialog.h" | ||
|
||
#include <QtTest/QtTest> | ||
|
||
|
||
class TestAdvanceStickAssignmentDialog: public QObject | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
TestAdvanceStickAssignmentDialog(QObject* parent = 0); | ||
|
||
private slots: | ||
|
||
private: | ||
AdvanceStickAssignmentDialog advanceStickAssignmentDialog; | ||
}; | ||
|
||
TestAdvanceStickAssignmentDialog::TestAdvanceStickAssignmentDialog(QObject* parent) : | ||
QObject(parent), | ||
advanceStickAssignmentDialog() | ||
{ | ||
QTestEventLoop::instance().enterLoop(1); | ||
} | ||
|
||
// QTEST_MAIN(TestAdvanceButtonDialog) | ||
#include "testadvancestickassignmentdialog.moc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#include "axiseditdialog.h" | ||
|
||
#include <QtTest/QtTest> | ||
|
||
|
||
class TestAxisEditDialog: public QObject | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
TestAxisEditDialog(QObject* parent = 0); | ||
|
||
private slots: | ||
|
||
private: | ||
AxisEditDialog axisEditDialog; | ||
}; | ||
|
||
TestAxisEditDialog::TestAxisEditDialog(QObject* parent) : | ||
QObject(parent), | ||
axisEditDialog() | ||
{ | ||
QTestEventLoop::instance().enterLoop(1); | ||
} | ||
|
||
// QTEST_MAIN(TestAxisEditDialog) | ||
#include "testaxiseditdialog.moc" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include "buttoneditdialog.h" | ||
|
||
#include <QtTest/QtTest> | ||
|
||
|
||
class TestButtonEditDialog: public QObject | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
TestButtonEditDialog(QObject* parent = 0); | ||
|
||
private slots: | ||
|
||
private: | ||
ButtonEditDialog buttonEditDialog; | ||
}; | ||
|
||
TestButtonEditDialog::TestButtonEditDialog(QObject* parent) : | ||
QObject(parent), | ||
buttonEditDialog() | ||
{ | ||
QTestEventLoop::instance().enterLoop(1); | ||
} | ||
|
||
// QTEST_MAIN(TestButtonEditDialog) | ||
#include "testbuttoneditdialog.cpp" |