chromium/components/device_signals/core/system_signals/executable_metadata_service_unittest.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace

class ExecutableMetadataServiceTest : public testing::Test {};

TEST_F(ExecutableMetadataServiceTest, GetAllExecutableMetadata_Empty) {}

TEST_F(ExecutableMetadataServiceTest, GetAllExecutableMetadata_Success) {}

}  // namespace device_signals