mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
019edd065f
This is just a stub test case to show how a test case should be implemented. every 'private slot' on the test classes will be automatically executed when you run 'make test' on the terminal, and a report will be generated with a failure / success. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
12 lines
No EOL
185 B
C++
12 lines
No EOL
185 B
C++
#ifndef TESTUNITCONVERSION_H
|
|
#define TESTUNITCONVERSION_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestUnitConversion : public QObject{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testUnitConversions();
|
|
};
|
|
|
|
#endif |