BigBlueBox
An Inventory Management System for a NYLT Course or other Boy Scout Programs
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
qrtest.h
Go to the documentation of this file.
1 #ifndef QRTEST_H
2 #define QRTEST_H
3 
4 #include <QObject>
5 #include <QtTest>
6 #include <QString>
7 
8 #include "qr/QrInterface.h"
9 
10 
11 namespace bbbTest {
12 class QrTest : public QObject
13 {
14  Q_OBJECT
15 public:
16  QrTest();
17 
18 private slots:
19  //************************************************************
20  //* Testing Functions
21  //************************************************************
25  void testTest();
26  //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
27  void svgRenderTest();
28  void svgRenderTest_data();
29 //QString svgString = QrInterface::strToSvg(scanCodeString);
30 
31 };
32 
33 }
34 #endif // QRTEST_H
Definition: qrtest.h:12
void svgRenderTest()
Definition: qrtest.cpp:347
void testTest()
Makes sure QTest, .yml an travis.ci are working.
Definition: qrtest.cpp:10
void svgRenderTest_data()
Definition: qrtest.cpp:24
QrTest()
Definition: qrtest.cpp:4