1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-13 11:43:06 +00:00

Put ESM::FixedString tests into unnamed namespace

This commit is contained in:
elsid 2023-01-02 17:54:14 +01:00
parent c9d57788fb
commit 7c60905266
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -2,6 +2,8 @@
#include "components/esm/esmcommon.hpp"
#include <gtest/gtest.h>
namespace
{
TEST(EsmFixedString, operator__eq_ne)
{
{
@ -141,3 +143,4 @@ TEST(EsmFixedString, construction_from_RecNameInts_is_supported)
constexpr ESM::NAME value(ESM::RecNameInts::REC_ACTI);
EXPECT_EQ(value, static_cast<std::uint32_t>(ESM::RecNameInts::REC_ACTI)) << value.toInt();
}
}