##// END OF EJS Templates
Removed CMake scripts :)
Removed CMake scripts :)

File last commit:

r62:7315812f3839
r93:63c6ae3895dd
Show More
TestVariable.cpp
20 lines | 349 B | text/x-c | CppLexer
#include <QObject>
#include <QtTest>
#include <Variable/Variable2.h>
#include <memory>
class TestVariable : public QObject
{
Q_OBJECT
private slots:
void initTestCase() {}
void type_matches_TS_type()
{
Variable2 v("none", {});
QVERIFY(v.type() == DataSeriesType::NONE);
}
};
QTEST_MAIN(TestVariable)
#include "TestVariable.moc"