#include <memory>
#include <utility>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/test/task_environment.h"
#include "base/threading/thread.h"
#include "media/learning/mojo/public/cpp/mojo_learning_task_controller.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
namespace learning {
class MojoLearningTaskControllerTest : public ::testing::Test { … };
TEST_F(MojoLearningTaskControllerTest, GetLearningTask) { … }
TEST_F(MojoLearningTaskControllerTest, BeginWithoutDefaultTarget) { … }
TEST_F(MojoLearningTaskControllerTest, BeginWithDefaultTarget) { … }
TEST_F(MojoLearningTaskControllerTest, UpdateDefaultTargetToValue) { … }
TEST_F(MojoLearningTaskControllerTest, UpdateDefaultTargetToNoValue) { … }
TEST_F(MojoLearningTaskControllerTest, Complete) { … }
TEST_F(MojoLearningTaskControllerTest, Cancel) { … }
TEST_F(MojoLearningTaskControllerTest, PredictDistribution) { … }
}
}