Carna  Version 3.0.1
ColorTest.h
1 /*
2  * Copyright (C) 2010 - 2015 Leonid Kostrykin
3  *
4  * Chair of Medical Engineering (mediTEC)
5  * RWTH Aachen University
6  * Pauwelsstr. 20
7  * 52074 Aachen
8  * Germany
9  *
10  */
11 
12 #pragma once
13 
14 namespace Carna
15 {
16 
17 namespace testing
18 {
19 
20 
21 
22 // ----------------------------------------------------------------------------------
23 // ColorTest
24 // ----------------------------------------------------------------------------------
25 
32 class ColorTest : public QObject
33 {
34 
35  Q_OBJECT
36 
37 private slots:
38 
42  void initTestCase();
43 
47  void cleanupTestCase();
48 
52  void init();
53 
57  void cleanup();
58 
59  // ----------------------------------------------------------------------------------
60 
61  void test_RED();
62 
63  void test_copy_ctor();
64 
65  void test_assignment_operator();
66 
67 }; // mathTest
68 
69 
70 
71 } // namespace Carna :: testing
72 
73 } // namespace Carna
Unit-tests of the Carna::base::Color class.
Definition: ColorTest.h:32