QmlProfiler: Add tests for FlameGraph

Change-Id: I1eadb2675e16fcc61e073ea1a730ab065456f964
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
Ulf Hermann
2016-05-30 16:28:19 +02:00
parent 652846c5c7
commit 12f160b1f3
5 changed files with 199 additions and 2 deletions

View File

@@ -31,6 +31,7 @@
#ifdef WITH_TESTS
#include "tests/debugmessagesmodel_test.h"
#include "tests/flamegraph_test.h"
#endif
#include <extensionsystem/pluginmanager.h>
@@ -81,6 +82,7 @@ QList<QObject *> QmlProfiler::Internal::QmlProfilerPlugin::createTestObjects() c
QList<QObject *> tests;
#ifdef WITH_TESTS
tests << new DebugMessagesModelTest;
tests << new FlameGraphTest;
#endif
return tests;
}