Attempt to test the hexviewer.

This commit is contained in:
Nicholas Johnson 2024-10-28 19:16:23 -04:00
parent 4434ecc3f7
commit 71d6d1ab53
2 changed files with 24 additions and 0 deletions

4
testhexviewer.cpp Normal file
View File

@ -0,0 +1,4 @@
#include "testhexviewer.h"
void TestQString::pCalcCharCount() {
}

20
testhexviewer.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef TESTHEXVIEWER_H
#define TESTHEXVIEWER_H
#include "hexviewer.h"
#include <QTest>
class TestQString: public QObject
{
Q_OBJECT
private slots:
void pCalcCharCount();
private:
HexViewer *pHexViewer;
};
#endif // TESTHEXVIEWER_H