chromium/v8/test/unittests/wasm/struct-types-unittest.cc

// 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/struct-types.h"

#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace v8::internal::wasm {
namespace struct_types_unittest {

class StructTypesTest : public TestWithZone {};

TEST_F(StructTypesTest, Empty) {}

TEST_F(StructTypesTest, OneField) {}

TEST_F(StructTypesTest, Packing) {}

TEST_F(StructTypesTest, CopyingOffsets) {}

}  // namespace struct_types_unittest
}  // namespace v8::internal::wasm