Add missing file from refactor
This commit is contained in:
+4
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user