#include <memory>
#include <utility>
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/test/task_environment.h"
#include "base/threading/thread.h"
#include "media/learning/mojo/mojo_learning_task_controller_service.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
ukm::SourceId kSourceId{ … };
}
namespace media {
namespace learning {
class MojoLearningTaskControllerServiceTest : public ::testing::Test { … };
TEST_F(MojoLearningTaskControllerServiceTest, BeginComplete) { … }
TEST_F(MojoLearningTaskControllerServiceTest, BeginCancel) { … }
TEST_F(MojoLearningTaskControllerServiceTest, BeginWithDefaultTarget) { … }
TEST_F(MojoLearningTaskControllerServiceTest, TooFewFeaturesIsIgnored) { … }
TEST_F(MojoLearningTaskControllerServiceTest, TooManyFeaturesIsIgnored) { … }
TEST_F(MojoLearningTaskControllerServiceTest, CompleteWithoutBeginFails) { … }
TEST_F(MojoLearningTaskControllerServiceTest, CancelWithoutBeginFails) { … }
TEST_F(MojoLearningTaskControllerServiceTest, UpdateDefaultTargetToValue) { … }
TEST_F(MojoLearningTaskControllerServiceTest, UpdateDefaultTargetToNoValue) { … }
TEST_F(MojoLearningTaskControllerServiceTest, PredictDistribution) { … }
}
}