aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test/uritests.h
diff options
context:
space:
mode:
authorGregory Maxwell <gmaxwell@gmail.com>2012-04-06 11:22:24 -0700
committerGregory Maxwell <gmaxwell@gmail.com>2012-04-06 11:22:24 -0700
commit138d08c5315c45b3dd08184c4eeb77ee3e47ef0a (patch)
tree7785ea719ba3c922f5f691b6a7e17bae57c2971c /src/qt/test/uritests.h
parent9362da78b0d8f0dd7bbad259adcb3e4d0cf58e56 (diff)
parentfa2544e79faf75923766624acd638e3cbdb9be0d (diff)
downloadbitcoin-138d08c5315c45b3dd08184c4eeb77ee3e47ef0a.tar.xz
Merge pull request #987 from luke-jr/ipc_name_fix
Cleanup: Replace "URL" with "URI" where we aren't actually working with URLs
Diffstat (limited to 'src/qt/test/uritests.h')
-rw-r--r--src/qt/test/uritests.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/qt/test/uritests.h b/src/qt/test/uritests.h
new file mode 100644
index 0000000000..1237516e5f
--- /dev/null
+++ b/src/qt/test/uritests.h
@@ -0,0 +1,15 @@
+#ifndef URITESTS_H
+#define URITESTS_H
+
+#include <QTest>
+#include <QObject>
+
+class URITests : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void uriTests();
+};
+
+#endif // URITESTS_H