// 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/segmentation_platform/internal/config_parser.h" #include <memory> #include "components/segmentation_platform/public/config.h" #include "testing/gtest/include/gtest/gtest.h" namespace segmentation_platform { bool operator==(const std::unique_ptr<Config::SegmentMetadata>& a, const std::unique_ptr<Config::SegmentMetadata>& b) { … } TEST(ConfigParserTest, ParseInvalidConfig) { … } TEST(ConfigParserTest, ParseValidConfig) { … } } // namespace segmentation_platform