123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include <QtQuickTest/quicktest.h>
- #include "simpletest.pb.h"
- #include "qtprotobuf_global.pb.h"
- using namespace qtprotobufnamespace::tests;
- class TestSetup : public QObject {
- public:
- TestSetup() {
- QtProtobuf::qRegisterProtobufTypes();
- qtprotobufnamespace::tests::qRegisterProtobufTypes();
- }
- ~TestSetup() = default;
- };
- QUICK_TEST_MAIN_WITH_SETUP(qtprotobuf_qml_test, TestSetup)
|