summaryrefslogtreecommitdiff
path: root/client/test/testwindow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/test/testwindow.cc')
-rw-r--r--client/test/testwindow.cc33
1 files changed, 33 insertions, 0 deletions
diff --git a/client/test/testwindow.cc b/client/test/testwindow.cc
new file mode 100644
index 0000000..72f5533
--- /dev/null
+++ b/client/test/testwindow.cc
@@ -0,0 +1,33 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+#include <QtTest/QtTest>
+#include "util.h"
+#include "widgets/window.h"
+
+static QString xml = "<widgets name=\"foo\">\n</widgets>";
+static QString xml2 = "<widgets name=\"foo\">\n"
+ "<lineedit name=\"foo\" value=\"bar\"/>\n"
+ "</widgets>";
+
+class TestWindow: public QObject
+{
+Q_OBJECT
+private slots:
+ void memleak() {
+ QDomDocument doc; doc.setContent(xml);
+ QDomElement e = doc.documentElement();
+ MacroWindow *w = createMacroWindow();
+ TEST_MEMLEAK(Window le(e, w));
+ delete w;
+ }
+
+ void memleak2() {
+ QDomDocument doc; doc.setContent(xml2);
+ QDomElement e = doc.documentElement();
+ MacroWindow *w = createMacroWindow();
+ TEST_MEMLEAK(Window le(e, w));
+ delete w;
+ }
+};
+
+QTEST_MAIN(TestWindow)
+#include "testwindow.moc"