subsurface/tests/testunitconversion.h
Tomaz Canabrava 019edd065f First test case implemented.
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>
2014-04-14 11:49:49 -07:00

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