chromium/ui/views/repeat_controller_unittest.cc

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

#include "ui/views/repeat_controller.h"

#include "base/functional/bind.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace views {

namespace {

class RepeatControllerTest : public testing::Test {};

// static
constexpr base::TimeDelta RepeatControllerTest::kShortWait;

}  // namespace

TEST_F(RepeatControllerTest, StartStop) {}

TEST_F(RepeatControllerTest, StartShortWait) {}

TEST_F(RepeatControllerTest, StartInitialWait) {}

TEST_F(RepeatControllerTest, StartLongerWait) {}

TEST_F(RepeatControllerTest, NoCallbacksAfterStop) {}

}  // namespace views