Carna  Version 3.3.2
HUVTest.h
1 /*
2  * Copyright (C) 2021 Leonid Kostrykin
3  *
4  */
5 
6 #pragma once
7 
8 namespace Carna
9 {
10 
11 namespace testing
12 {
13 
14 
15 
16 // ----------------------------------------------------------------------------------
17 // HUVTest
18 // ----------------------------------------------------------------------------------
19 
26 class HUVTest : public QObject
27 {
28 
29  Q_OBJECT
30 
31 private slots:
32 
36  void initTestCase();
37 
41  void cleanupTestCase();
42 
46  void init();
47 
51  void cleanup();
52 
53  // ----------------------------------------------------------------------------------
54 
55  void test_HUV_rel();
56 
57  void test_HUV_abs();
58 
59 }; // HUVTest
60 
61 
62 
63 } // namespace Carna :: testing
64 
65 } // namespace Carna
Unit-tests of the Carna::base::HUV class.
Definition: HUVTest.h:26