BigBlueBox
An Inventory Management System for a NYLT Course or other Boy Scout Programs
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
_filewriterbench.h
Go to the documentation of this file.
1 #ifndef _FILEWRITERBENCH_H
2 #define _FILEWRITERBENCH_H
3 
4 #include <QObject>
5 #include <QtTest>
6 #include <QDebug>
7 
8 #include <QVector>
9 
10 #include "item.h"
11 #include "_filewriter.h"
12 
13 
14 
15 namespace bbbTest {
16 class _FileWriterBench : public QObject
17 {
18  Q_OBJECT
19 public:
21 
22 private:
23  QString fileLoc;
24  QString textFileName;
25  QString xmlFileName;
26  QVector<bbb::Item> tempVector;
27 
28  QVector<bbb::Item> itemMaker();
29 
30 private slots:
31 
32  void txtBenchmark();
33 
34  void xmlBenchmark();
35 
36 }; // end class
37 } // end namespace
38 
39 #endif // _FILEWRITERBENCH_H
void txtBenchmark()
Definition: _filewriterbench.cpp:51
Definition: _filewriterbench.h:16
_FileWriterBench()
Definition: _filewriterbench.cpp:6
QVector< bbb::Item > tempVector
Definition: _filewriterbench.h:26
QVector< bbb::Item > itemMaker()
Definition: _filewriterbench.cpp:17
QString textFileName
Definition: _filewriterbench.h:24
QString fileLoc
Definition: _filewriterbench.h:23
void xmlBenchmark()
Definition: _filewriterbench.cpp:81
QString xmlFileName
Definition: _filewriterbench.h:25