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