#include "components/device_signals/core/system_signals/executable_metadata_service.h"
#include <memory>
#include <utility>
#include "base/files/file_path.h"
#include "base/memory/raw_ptr.h"
#include "components/device_signals/core/common/common_types.h"
#include "components/device_signals/core/system_signals/mock_platform_delegate.h"
#include "components/device_signals/core/system_signals/platform_delegate.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
Return;
namespace device_signals {
namespace {
ExecutableMetadata CreateExecutableMetadata(
bool is_running,
const std::optional<std::vector<std::string>>& public_keys_hashes) { … }
}
class ExecutableMetadataServiceTest : public testing::Test { … };
TEST_F(ExecutableMetadataServiceTest, GetAllExecutableMetadata_Empty) { … }
TEST_F(ExecutableMetadataServiceTest, GetAllExecutableMetadata_Success) { … }
}