~hmatuschek/+junk/qdmr-package

« back to all changes in this revision

Viewing changes to test/configtest.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 CONFIGTEST_HH
 
2
#define CONFIGTEST_HH
 
3
 
 
4
#include <QObject>
 
5
#include "config.hh"
 
6
 
 
7
 
 
8
class ConfigTest : public QObject
 
9
{
 
10
  Q_OBJECT
 
11
 
 
12
public:
 
13
  explicit ConfigTest(QObject *parent = nullptr);
 
14
 
 
15
private slots:
 
16
  void initTestCase();
 
17
  void cleanupTestCase();
 
18
 
 
19
  void testDMRID();
 
20
  void testRadioName();
 
21
  void testIntroLines();
 
22
  void testMicLevel();
 
23
  void testSpeechSynthesis();
 
24
  void testDigitalContacts();
 
25
  void testRXGroups();
 
26
  void testDigitalChannels();
 
27
  void testAnalogChannels();
 
28
  void testZones();
 
29
  void testScanLists();
 
30
  void testGPSSystems();
 
31
 
 
32
protected:
 
33
  Config _config;
 
34
};
 
35
 
 
36
#endif // CONFIGTEST_HH