#include "third_party/blink/renderer/platform/media/learning_experiment_helper.h"
#include <memory>
#include "base/memory/raw_ptr.h"
#include "media/learning/common/learning_task_controller.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace blink {
FeatureDictionary;
FeatureValue;
FeatureVector;
LearningTask;
LearningTaskController;
ObservationCompletion;
TargetValue;
_;
class MockLearningTaskController : public LearningTaskController { … };
class LearningExperimentHelperTest : public testing::Test { … };
TEST_F(LearningExperimentHelperTest, BeginComplete) { … }
TEST_F(LearningExperimentHelperTest, BeginCancel) { … }
TEST_F(LearningExperimentHelperTest, CompleteWithoutBeginDoesNothing) { … }
TEST_F(LearningExperimentHelperTest, CancelWithoutBeginDoesNothing) { … }
TEST_F(LearningExperimentHelperTest, DoesNothingWithoutController) { … }
}