#include "components/segmentation_platform/internal/dummy_segmentation_platform_service.h"
#include <string>
#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "components/segmentation_platform/internal/constants.h"
#include "components/segmentation_platform/public/prediction_options.h"
#include "components/segmentation_platform/public/result.h"
#include "components/segmentation_platform/public/segment_selection_result.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace segmentation_platform {
class DummySegmentationPlatformServiceTest : public testing::Test { … };
TEST_F(DummySegmentationPlatformServiceTest, GetSelectedSegment) { … }
TEST_F(DummySegmentationPlatformServiceTest, GetClassificationResult) { … }
TEST_F(DummySegmentationPlatformServiceTest, GetAnnotatedNumericResult) { … }
}