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_object.h
1 #ifndef TESTOBJECT_H
2 #define TESTOBJECT_H
3 
4 #include "AutoTest.h"
5 class Object;
6 
7 class TestObject : public QObject
8 {
9  Q_OBJECT
10 
11 public:
12  TestObject();
13 
14 private slots:
15  void initTestCase();
16  void cleanupTestCase();
17 
18  void testCase1();
19  void testAddBitmapLayer();
20  void testAddVectorLayer();
21  void testAddCameraLayer();
22  void testAddSoundLayer();
23 
24  void testAddMoreLayers();
25 
26  void testLayerID();
27  void testMoveLayer();
28 
29  void testLoadXML();
30 
31 private:
32 };
33 
34 
35 DECLARE_TEST( TestObject )
36 
37 #endif // TESTOBJECT_H
Definition: object.h:71