// 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. #ifndef COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_EXECUTION_PROCESSING_MOCK_FEATURE_AGGREGATOR_H_ #define COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_EXECUTION_PROCESSING_MOCK_FEATURE_AGGREGATOR_H_ #include <vector> #include "components/segmentation_platform/internal/execution/processing/feature_aggregator.h" #include "testing/gmock/include/gmock/gmock.h" namespace segmentation_platform::processing { // Mock of feature aggregator class. Used for testing. class MockFeatureAggregator : public FeatureAggregator { … }; } // namespace segmentation_platform::processing #endif // COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_EXECUTION_PROCESSING_MOCK_FEATURE_AGGREGATOR_H_