BigBlueBox
An Inventory Management System for a NYLT Course or other Boy Scout Programs
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
_regextest.h
Go to the documentation of this file.
1 #ifndef _REGEXTEST_H
2 #define _REGEXTEST_H
3 
4 #include <QObject>
5 #include <QtTest>
6 #include <QString>
7 
8 #include "_regex.h"
9 
10 namespace bbbTest {
11 /***********************************************************************************/
19 /***********************************************************************************/
20 class _RegexTest : public QObject
21 {
22  Q_OBJECT // Qt Object macro
23 public:
24  //************************************************************
27  _RegexTest();
28  //************************************************************
29 
30 
31 // All testing functions must be in private slots.
32 private slots:
33  //************************************************************
34  //* Testing Functions
35  //************************************************************
39  void testTest();
40  //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
44  void testIsItemName_data();
45  //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
49  void testIsItemName();
50  //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
54  void testIsBoxName_data();
55  //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
59  void testIsBoxName();
60  //************************************************************
61 
62 }; // end class
63 /***********************************************************************************/
64 
65 } // end namespace
66 #endif // _REGEXTEST_H
_RegexTest()
Default Constructor.
Definition: _regextest.cpp:5
void testTest()
Makes sure QTest, .yml an travis.ci are working.
Definition: _regextest.cpp:11
Contains the tests for the _Regex class.
Definition: _regextest.h:20
void testIsItemName()
Tests regex on isItemName.
Definition: _regextest.cpp:104
void testIsBoxName()
Tests regec on isBoxName.
Definition: _regextest.cpp:204
void testIsBoxName_data()
Test Data for testIsBoxName.
Definition: _regextest.cpp:128
void testIsItemName_data()
Data for testIsItemName()
Definition: _regextest.cpp:27