| // 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. |
| |
| #include <gtk/gtk.h> |
| |
| // Included first as it collides with the X11 headers. |
| #include "gtest/gtest.h" |
| |
| #include "flutter/shell/platform/linux/fl_binary_messenger_private.h" |
| #include "flutter/shell/platform/linux/fl_texture_registrar_private.h" |
| #include "flutter/shell/platform/linux/public/flutter_linux/fl_plugin_registrar.h" |
| #include "flutter/shell/platform/linux/testing/fl_test.h" |
| #include "flutter/shell/platform/linux/testing/mock_plugin_registrar.h" |
| |
| // Checks can make a mock registrar. |
| TEST(FlPluginRegistrarTest, FlMockRegistrar) { |
| g_autoptr(FlEngine) engine = make_mock_engine(); |
| g_autoptr(FlBinaryMessenger) messenger = fl_binary_messenger_new(engine); |
| g_autoptr(FlTextureRegistrar) texture_registrar = |
| fl_texture_registrar_new(engine); |
| |
| g_autoptr(FlPluginRegistrar) registrar = |
| fl_mock_plugin_registrar_new(messenger, texture_registrar); |
| EXPECT_TRUE(FL_IS_MOCK_PLUGIN_REGISTRAR(registrar)); |
| |
| EXPECT_EQ(fl_plugin_registrar_get_messenger(registrar), messenger); |
| EXPECT_EQ(fl_plugin_registrar_get_texture_registrar(registrar), |
| texture_registrar); |
| } |