chromium/media/learning/mojo/mojo_learning_task_controller_service_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/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 {
// Meaningless, but non-empty, source id.
ukm::SourceId kSourceId{};
}  // namespace

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

}  // namespace learning
}  // namespace media