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_filemanager.h
1 
2 #ifndef TEST_OBJECTSAVELOADER_H
3 #define TEST_OBJECTSAVELOADER_H
4 
5 
6 #include <QString>
7 #include <QtTest>
8 #include "AutoTest.h"
9 
10 
11 class TestFileManager : public QObject
12 {
13  Q_OBJECT
14 
15 private slots:
16  void testCase1();
17  void testNotExistFile();
18  void testInvalidXML();
19  void testInvalidPencilDocument();
20  void testMinimalOldPencilDocument();
21  void testOneLayerInFile();
22  void testBitmapLayer();
23  void testBitmapLayer2();
24 
25  void testGeneratePCLX();
26  void testLoadPCLX();
27 };
28 
29 DECLARE_TEST(TestFileManager)
30 
31 #endif // TEST_OBJECTSAVELOADER_H