File indexing completed on 2024-04-14 03:51:32

0001 #ifndef KSTRINGHANDLERTEST_H
0002 #define KSTRINGHANDLERTEST_H
0003 
0004 #include <QObject>
0005 
0006 class KStringHandlerTest : public QObject
0007 {
0008     Q_OBJECT
0009 
0010 private Q_SLOTS:
0011     void capwords();
0012     void tagURLs();
0013     void perlSplitTextSep();
0014     void perlSplitRegexSep();
0015     void obscure();
0016     void preProcessWrap_data();
0017     void preProcessWrap();
0018     void logicalLength_data();
0019     void logicalLength();
0020     void lsqueeze();
0021     void lsqueeze_data();
0022     void csqueeze();
0023     void csqueeze_data();
0024     void rsqueeze();
0025     void rsqueeze_data();
0026 
0027 private:
0028     static QString test;
0029 };
0030 
0031 #endif