summaryrefslogtreecommitdiff
path: root/Tests/QtAutomoc/main.cpp
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-11-10 21:40:31 +0100
committerAlex Neundorf <neundorf@kde.org>2011-11-10 22:12:03 +0100
commit69cf480cd65621d3db1390f78ef2d3cd1dddb5d8 (patch)
tree157df9179c1f15f2a29955ae07b316f91dac15f1 /Tests/QtAutomoc/main.cpp
parent81c43b4fb6e46430e730e2cb268c283e47995b78 (diff)
downloadcmake-69cf480cd65621d3db1390f78ef2d3cd1dddb5d8.tar.gz
automoc: add more test cases
Alex
Diffstat (limited to 'Tests/QtAutomoc/main.cpp')
-rw-r--r--Tests/QtAutomoc/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/QtAutomoc/main.cpp b/Tests/QtAutomoc/main.cpp
index b7cfb410ef..58e2a191a9 100644
--- a/Tests/QtAutomoc/main.cpp
+++ b/Tests/QtAutomoc/main.cpp
@@ -43,6 +43,8 @@
#include "codeeditor.h"
#include "calwidget.h"
#include "foo.h"
+#include "blub.h"
+#include "sub/bar.h"
int main(int argv, char **args)
{
@@ -58,5 +60,11 @@ int main(int argv, char **args)
Foo foo;
foo.doFoo();
+ Blub b;
+ b.blubber();
+
+ Bar bar;
+ bar.doBar();
+
return app.exec();
}