Add unit test for nested namespace type

#2626 #2914
This commit is contained in:
Wojtek Figat
2024-09-09 07:12:40 +02:00
parent e8d077bb84
commit c42cc266f9
2 changed files with 21 additions and 0 deletions

View File

@@ -7,6 +7,12 @@
#include "Engine/Scripting/ManagedCLR/MUtils.h"
#include <ThirdParty/catch2/catch.hpp>
Foo::Foo(const SpawnParams& params)
: ScriptingObject(params)
, FooInterface(nullptr)
{
}
TestNesting::TestNesting(const SpawnParams& params)
: SerializableScriptingObject(params)
{