##// END OF EJS Templates
Some refac for new PySide2 bindings...
Some refac for new PySide2 bindings - made DataSourceItem iterable - added some tree print function for debug - fixed minor bug on DataSourceContorller which prevented from adding products in more than one call per provider - improved IDataProvider for future refac Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r53:cd10c3acad49
r92:9ff5f48e3d71
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"