From 71d6d1ab53e8db013ae299a4a3774523355c03e1 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson Date: Mon, 28 Oct 2024 19:16:23 -0400 Subject: [PATCH] Attempt to test the hexviewer. --- testhexviewer.cpp | 4 ++++ testhexviewer.h | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 testhexviewer.cpp create mode 100644 testhexviewer.h diff --git a/testhexviewer.cpp b/testhexviewer.cpp new file mode 100644 index 0000000..13a07e6 --- /dev/null +++ b/testhexviewer.cpp @@ -0,0 +1,4 @@ +#include "testhexviewer.h" + +void TestQString::pCalcCharCount() { +} diff --git a/testhexviewer.h b/testhexviewer.h new file mode 100644 index 0000000..92b48d5 --- /dev/null +++ b/testhexviewer.h @@ -0,0 +1,20 @@ +#ifndef TESTHEXVIEWER_H +#define TESTHEXVIEWER_H + +#include "hexviewer.h" + +#include + +class TestQString: public QObject +{ + Q_OBJECT + +private slots: + void pCalcCharCount(); + +private: + HexViewer *pHexViewer; +}; + + +#endif // TESTHEXVIEWER_H