blob: 252543d4178c7abfb25c555b291c10f9fa4ca758 [file] [log] [blame]
// Copyright 2019 The Fuchsia 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 SRC_UI_A11Y_BIN_A11Y_MANAGER_TESTS_UTIL_UTIL_H_
#define SRC_UI_A11Y_BIN_A11Y_MANAGER_TESTS_UTIL_UTIL_H_
#include <fuchsia/accessibility/semantics/cpp/fidl.h>
namespace accessibility_test {
constexpr int kMaxLogBufferSize = 1024;
// Create a test node with only a node id and a label.
fuchsia::accessibility::semantics::Node CreateTestNode(
uint32_t node_id, std::optional<std::string> label,
std::vector<uint32_t> child_ids = std::vector<uint32_t>());
} // namespace accessibility_test
#endif // SRC_UI_A11Y_BIN_A11Y_MANAGER_TESTS_UTIL_UTIL_H_