// Copyright 2022 the V8 project 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 "src/wasm/string-builder.h" #include "testing/gtest/include/gtest/gtest.h" namespace v8::internal::wasm { namespace string_builder_unittest { TEST(StringBuilder, Simple) { … } TEST(StringBuilder, DontLeak) { … } TEST(StringBuilder, SuperLongStrings) { … } } // namespace string_builder_unittest } // namespace v8::internal::wasm