##// 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
First init from SciQLop Core module...
r0 #include <QObject>
#include <QtTest>
New TimeSeries integration WIP...
r62 #include <Variable/Variable2.h>
First init from SciQLop Core module...
r0 #include <memory>
New TimeSeries integration WIP...
r62 class TestVariable : public QObject
{
Q_OBJECT
First init from SciQLop Core module...
r0
private slots:
New TimeSeries integration WIP...
r62 void initTestCase() {}
void type_matches_TS_type()
{
Variable2 v("none", {});
QVERIFY(v.type() == DataSeriesType::NONE);
}
First init from SciQLop Core module...
r0 };
QTEST_MAIN(TestVariable)
#include "TestVariable.moc"