Scribus
Open source desktop publishing at your fingertips
testIndex.h
1 /*
2  * testGlyphStore.cpp
3  * ScribusProject
4  *
5  * Created by Andreas Vox on 22.08.10.
6  * Copyright 2010 __MyCompanyName__. All rights reserved.
7  *
8  */
9 
10 #include <QtTest/QtTest>
11 
12 /* Avox possibly introduced a bug here. Commenting out for now.
13  * #include "text/index.h" */
14 
15 class TestIndex: public QObject
16 {
17  Q_OBJECT
18 
19 private slots:
20 
21  void empty();
22  void add();
23  void remove();
24  void access();
25  void insert();
26 };
Definition: testIndex.h:15