AutoTest: Unify naming scheme for gtest related classes and files

Change-Id: Ib0739889cbc6416da3f28f1e39b197317ec8a4e6
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
Christian Stenger
2016-06-06 12:17:19 +02:00
parent af81016e64
commit 5a3a879a4c
11 changed files with 81 additions and 81 deletions

View File

@@ -30,7 +30,7 @@
// FIXME
#include "qtest/qttestparser.h"
#include "quick/quicktestparser.h"
#include "gtest/googletestparser.h"
#include "gtest/gtestparser.h"
// end of FIXME
#include <coreplugin/editormanager/editormanager.h>
@@ -84,7 +84,7 @@ TestCodeParser::TestCodeParser(TestTreeModel *parent)
m_testCodeParsers.append(new QtTestParser);
m_testCodeParsers.append(new QuickTestParser);
m_testCodeParsers.append(new GoogleTestParser);
m_testCodeParsers.append(new GTestParser);
}
TestCodeParser::~TestCodeParser()