Add missing file from refactor

This commit is contained in:
jonawals
2021-05-21 19:39:50 +01:00
parent 084e459a63
commit 95a30b0fee
@@ -12,6 +12,8 @@
#pragma once
#include <TestImpactFramework/TestImpactRepoPath.h>
#include <AzCore/std/string/string.h>
#include <AzCore/std/containers/vector.h>
@@ -27,14 +29,14 @@ namespace TestImpact
//! Coverage information about a particular source file.
struct SourceCoverage
{
AZStd::string m_path; //!< Source file path.
RepoPath m_path; //!< Source file path.
AZStd::vector<LineCoverage> m_coverage; //!< Source file line coverage (empty if source level coverage only).
};
//! Coverage information about a particular module (executable, shared library).
struct ModuleCoverage
{
AZStd::string m_path; //!< Module path.
RepoPath m_path; //!< Module path.
AZStd::vector<SourceCoverage> m_sources; //!< Sources of this module that are covered.
};
} // namespace TestImpact