chromium/third_party/blink/renderer/core/html/forms/type_ahead_test.cc

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

#include "third_party/blink/renderer/core/html/forms/type_ahead.h"

#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/input/web_keyboard_event.h"
#include "third_party/blink/renderer/core/events/keyboard_event.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {
namespace {

class TestTypeAheadDataSource : public TypeAheadDataSource {};

class TypeAheadTest : public ::testing::Test {};

TEST_F(TypeAheadTest, HasActiveSessionAtStart) {}

TEST_F(TypeAheadTest, HasActiveSessionAfterHandleEvent) {}

TEST_F(TypeAheadTest, HasActiveSessionAfterResetSession) {}

}  // namespace
}  // namespace blink