#include "components/segmentation_platform/internal/selection/segment_score_provider.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "components/segmentation_platform/internal/database/segment_info_database.h"
#include "components/segmentation_platform/internal/database/test_segment_info_database.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace segmentation_platform {
namespace proto {
class SegmentInfo;
}
namespace {
const SegmentId kSegmentId = …;
class SegmentScoreProviderTest : public testing::Test { … };
TEST_F(SegmentScoreProviderTest, GetSegmentScore) { … }
}
}