aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/testtreeitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/testtreeitem.cpp')
-rw-r--r--src/plugins/autotest/testtreeitem.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/autotest/testtreeitem.cpp b/src/plugins/autotest/testtreeitem.cpp
index 39dfe5b65d..e1c1debe9c 100644
--- a/src/plugins/autotest/testtreeitem.cpp
+++ b/src/plugins/autotest/testtreeitem.cpp
@@ -297,6 +297,11 @@ bool TestTreeItem::isGroupNodeFor(const TestTreeItem *other) const
return QFileInfo(other->filePath()).absolutePath() == filePath();
}
+bool TestTreeItem::isGroupable() const
+{
+ return true;
+}
+
QSet<QString> TestTreeItem::internalTargets() const
{
auto cppMM = CppTools::CppModelManager::instance();