##// END OF EJS Templates
Spectrogram wrapper allow to set values from python...
Spectrogram wrapper allow to set values from python Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r53:cd10c3acad49
r66:e718ad47d2bc
Show More
TestCatalogueController.cpp
22 lines | 437 B | text/x-c | CppLexer
#include <Catalogue/CatalogueController.h>
#include <QObject>
#include <QtTest>
#include <TestUtils/TestProviders.h>
class TestCatalogueController : public QObject
{
Q_OBJECT
public:
explicit TestCatalogueController(QObject* parent = nullptr) : QObject(parent) {}
signals:
private slots:
void initTestCase() {}
void cleanupTestCase() {}
};
QTEST_MAIN(TestCatalogueController)
#include "TestCatalogueController.moc"