Added MappedName class

This commit is contained in:
Pesc0
2023-03-08 17:58:50 +01:00
parent c1751bde4a
commit 5600c564be
5 changed files with 688 additions and 0 deletions

View File

@@ -5,5 +5,6 @@ target_sources(
${CMAKE_CURRENT_SOURCE_DIR}/Expression.cpp
${CMAKE_CURRENT_SOURCE_DIR}/IndexedName.cpp
${CMAKE_CURRENT_SOURCE_DIR}/License.cpp
${CMAKE_CURRENT_SOURCE_DIR}/MappedName.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Metadata.cpp
)

View File

@@ -0,0 +1,16 @@
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "gtest/gtest.h"
#include "App/MappedName.h"
// clang-format off
TEST(MappedName, defaultConstruction)
{
}
// clang-format on