T4ng10r

Qt Creator test header template

Dec 20th, 2016
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <QtTest/QtTest>
  2. #include <TestRunner.h>
  3. #include <memory>
  4.  
  5. class $test_class:l$ : public QObject
  6. {
  7.     Q_OBJECT
  8. public:
  9.     std::shared_ptr<> test_object;
  10.  
  11. private Q_SLOTS:
  12.     void init();
  13.     void cleanup();
  14.  
  15. };
  16.  
  17. DECLARE_TEST($test_class:l$)
Add Comment
Please, Sign In to add comment