summaryrefslogtreecommitdiff
path: root/Tests/QtAutomoc/main.cpp
diff options
context:
space:
mode:
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();
}