| 4 | #include <QLineEdit> |
| 5 | |
| 6 | class EditorTest : public GrootTestBase |
| 7 | { |
| 8 | Q_OBJECT |
| 9 | |
| 10 | public: |
| 11 | EditorTest() {} |
| 12 | ~EditorTest() {} |
| 13 | |
| 14 | private slots: |
| 15 | void initTestCase(); |
| 16 | void cleanupTestCase(); |
| 17 | void renameTabs(); |
| 18 | void loadFile(); |
| 19 | void loadFailed(); |
| 20 | void undoRedo(); |
| 21 | void testSubtree(); |
| 22 | void modifyCustomModel(); |
| 23 | void multipleSubtrees(); |
| 24 | void editText(); |
| 25 | void loadModelLess(); |
| 26 | void longNames(); |
| 27 | void clearModels(); |
| 28 | void undoWithSubtreeExpanded(); |
| 29 | }; |
| 30 | |
| 31 | |
| 32 | void EditorTest::initTestCase() |
nothing calls this directly
no outgoing calls
no test coverage detected