test: Fixed tests

This commit is contained in:
Eberhard Graether
2015-09-17 15:07:46 +02:00
parent b36e3fb758
commit 04f24ba63d
12 changed files with 328 additions and 32 deletions
+1 -2
View File
@@ -79,7 +79,7 @@ void Project::parseCode()
std::shared_ptr<ProjectSettings> projSettings = ProjectSettings::getInstance();
m_fileManager.fetchFilePaths();
m_fileManager.fetchFilePaths(m_storage->getInfoOnAllFiles());
std::set<FilePath> addedFilePaths = m_fileManager.getAddedFilePaths();
std::set<FilePath> updatedFilePaths = m_fileManager.getUpdatedFilePaths();
std::set<FilePath> removedFilePaths = m_fileManager.getRemovedFilePaths();
@@ -178,6 +178,5 @@ Parser::Arguments Project::getParserArguments() const
Project::Project(StorageAccessProxy* storageAccessProxy)
: m_storageAccessProxy(storageAccessProxy)
, m_fileManager(storageAccessProxy)
{
}