chromium/media/learning/mojo/public/cpp/mojo_learning_task_controller_unittest.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace learning
}  // namespace media