5#include <gtest/gtest.h>
7#include "flutter/shell/platform/fuchsia/flutter/flutter_runner_product_configuration.h"
16 const std::string json_string =
"{ \"invalid json string\" }}} ";
17 const uint64_t expected_intercept_all_input =
false;
21 EXPECT_EQ(expected_intercept_all_input,
26 const std::string json_string =
"";
27 const uint64_t expected_intercept_all_input =
false;
31 EXPECT_EQ(expected_intercept_all_input,
36 const std::string json_string =
"{ \"intercept_all_input\" : true } ";
37 const uint64_t expected_intercept_all_input =
true;
42 EXPECT_EQ(expected_intercept_all_input,
47 const std::string json_string =
"{ \"intercept_all_input\" : } ";
48 const uint64_t expected_intercept_all_input =
false;
53 EXPECT_EQ(expected_intercept_all_input,
bool get_intercept_all_input()
TEST_F(AccessibilityBridgeTest, RegistersViewRef)