Scribus
Open source desktop publishing at your fingertips
testStoryText.h
1 /*
2  * testStoryText.h
3  * ScribusProject
4  *
5  * Created by Andreas Vox on 22.08.10.
6  * Copyright 2010 __MyCompanyName__. All rights reserved.
7  *
8  */
9 
10 
11 #include <QtTest/QtTest>
12 
13 #include "text/storytext.h"
14 
15 class TestStoryText: public QObject
16 {
17  Q_OBJECT
18 
19 private slots:
20 
21  void initST();
22  void addText();
23  void removeText();
24  void copy();
25  void insertPar();
26  void removePar();
27  void removePars();
28  void applyCharStyle();
29  void removeCharStyle();
30 };
Definition: testStoryText.h:15