QmlProfiler: Add test for flame graph view

Change-Id: I5207e03ad8955f2d291d4fc1b7e5d33b64207379
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
Ulf Hermann
2016-05-31 17:32:39 +02:00
parent 5a3a879a4c
commit d345755b0f
7 changed files with 237 additions and 17 deletions

View File

@@ -33,6 +33,7 @@
#include "tests/debugmessagesmodel_test.h"
#include "tests/flamegraph_test.h"
#include "tests/flamegraphmodel_test.h"
#include "tests/flamegraphview_test.h"
#endif
#include <extensionsystem/pluginmanager.h>
@@ -85,6 +86,7 @@ QList<QObject *> QmlProfiler::Internal::QmlProfilerPlugin::createTestObjects() c
tests << new DebugMessagesModelTest;
tests << new FlameGraphTest;
tests << new FlameGraphModelTest;
tests << new FlameGraphViewTest;
#endif
return tests;
}