QmlProfiler: Add test for memory usage model

Change-Id: I4364dd5211fee0d017e58fde8af36879d83f23a2
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
Ulf Hermann
2016-06-03 12:02:46 +02:00
parent 34d5322312
commit d381c6e047
5 changed files with 324 additions and 2 deletions

View File

@@ -36,6 +36,7 @@
#include "tests/flamegraphview_test.h"
#include "tests/inputeventsmodel_test.h"
#include "tests/localqmlprofilerrunner_test.h"
#include "tests/memoryusagemodel_test.h"
#endif
#include <extensionsystem/pluginmanager.h>
@@ -89,6 +90,7 @@ QList<QObject *> QmlProfiler::Internal::QmlProfilerPlugin::createTestObjects() c
tests << new FlameGraphViewTest;
tests << new InputEventsModelTest;
tests << new LocalQmlProfilerRunnerTest;
tests << new MemoryUsageModelTest;
#endif
return tests;
}