Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
msgpack.test.cpp
Go to the documentation of this file.
2
3#include <gtest/gtest.h>
4
5// Mostly to be sure the function is constexpr.
6static_assert(::msgpack_detail::camel_case("gas_used") == "gasUsed");
7
8TEST(MsgpackSerialize, CamelCase)
9{
10 EXPECT_EQ(::msgpack_detail::camel_case("gas_used"), "gasUsed");
11}
TEST(MsgpackSerialize, CamelCase)
constexpr std::string camel_case(std::string_view name)
Definition msgpack.hpp:130