~hmatuschek/+junk/qdmr-package

« back to all changes in this revision

Viewing changes to test/utilstest.hh

  • Committer: Hannes Matuschek
  • Date: 2020-07-07 14:34:22 UTC
  • mto: (17.1.1 qdmr-package)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: hmatuschek@gmail.com-20200707143422-1djcxrjkem3k5kb1
Tags: upstream-0.3.0
ImportĀ upstreamĀ versionĀ 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef UTILSTEST_HH
 
2
#define UTILSTEST_HH
 
3
 
 
4
#include <QObject>
 
5
 
 
6
class UtilsTest : public QObject
 
7
{
 
8
  Q_OBJECT
 
9
public:
 
10
  explicit UtilsTest(QObject *parent = nullptr);
 
11
 
 
12
private slots:
 
13
  void testDecodeUnicode();
 
14
  void testEncodeUnicode();
 
15
  void testDecodeASCII();
 
16
  void testEncodeASCII();
 
17
  void testDecodeFrequency();
 
18
  void testEncodeFrequency();
 
19
  void testDecodeDMRID_bcd();
 
20
  void testEncodeDMRID_bcd();
 
21
};
 
22
 
 
23
#endif // UTILSTEST_HH