##// END OF EJS Templates
Added Y log tag for Spectrograms...
Added Y log tag for Spectrograms Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r53:cd10c3acad49
r87:c6cf2dba079d
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"