File indexing completed on 2024-04-14 05:12:17

0001 /*
0002     SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #pragma once
0007 
0008 #include <QObject>
0009 
0010 class CharFreqTest : public QObject
0011 {
0012     Q_OBJECT
0013 private Q_SLOTS:
0014     void test8bitData();
0015     void test8bitText();
0016     void test7bitData();
0017     void test7bitText();
0018     void testTrailingWhitespace();
0019     void testLeadingFrom();
0020 };
0021