Pencil2D  ff90c0872e88be3bf81c548cd60f01983012ec49
Pencil2D is an animation software for both bitmap and vector graphics. It is free, multi-platform, and open source.
 All Classes Functions
test_layermanager.h
1 #ifndef TEST_LAYER_MANAGER_H
2 #define TEST_LAYER_MANAGER_H
3 
4 #include "AutoTest.h"
5 
6 class Object;
7 class Editor;
8 class LayerManager;
9 
10 
11 class TestLayerManager : public QObject
12 {
13  Q_OBJECT
14 
15 private slots:
16  void initTestCase();
17  void cleanupTestCase();
18 
19  void testNewLayerManager();
20 
21 private:
22  Editor* mEditor = nullptr;
23  LayerManager* mLayerManager = nullptr;
24 };
25 
26 DECLARE_TEST( TestLayerManager )
27 
28 #endif
Definition: object.h:71
Definition: editor.h:45