blob: d4d611831d62cf2093935ac7135690c9cbe98220 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_MOCK_TEXT_INPUT_MANAGER_H_
#define FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_MOCK_TEXT_INPUT_MANAGER_H_
#include <cstring>
#include <optional>
#include "flutter/fml/macros.h"
#include "flutter/shell/platform/windows/text_input_manager.h"
#include "gmock/gmock.h"
namespace flutter {
namespace testing {
/// Mock for the |Window| base class.
class MockTextInputManager : public TextInputManager {
public:
MockTextInputManager();
virtual ~MockTextInputManager();
MOCK_METHOD(std::optional<std::u16string>,
GetComposingString,
(),
(const, override));
MOCK_METHOD(std::optional<std::u16string>,
GetResultString,
(),
(const, override));
MOCK_METHOD(long, GetComposingCursorPosition, (), (const, override));
private:
FML_DISALLOW_COPY_AND_ASSIGN(MockTextInputManager);
};
} // namespace testing
} // namespace flutter
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_MOCK_TEXT_INPUT_MANAGER_H_