blob: 09c16deff1b3cdff06d98375517f2e08dda00c07 [file] [log] [blame] [edit]
// Protocol Buffers - Google's data interchange format
// Copyright 2025 Google LLC. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#include <gtest/gtest.h>
#include "hpb_generator/tests/test_model.hpb.h"
#include "hpb/arena.h"
#include "hpb/hpb.h"
#include "hpb/ptr.h"
namespace hpb::testing {
namespace {
using ::hpb_unittest::protos::TestModel;
using ::hpb_unittest::protos::TestModel_Category_IMAGES;
// Tests in this file are run against both backends {upb, cpp} to ensure
// api conformance, compatibility, and correctness.
TEST(CppBackend, CanCreateMessage) {
hpb::Arena arena;
hpb::Ptr<TestModel> test_model_ptr = hpb::CreateMessage<TestModel>(arena);
(void)test_model_ptr;
}
TEST(CppBackend, MessageEnums) { EXPECT_EQ(5, TestModel_Category_IMAGES); }
} // namespace
} // namespace hpb::testing