// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
#if FLAX_TESTS
namespace FlaxEngine
{
///
/// Test class.
///
public class TestClassManaged : TestClassNative
{
TestClassManaged()
{
SimpleField = 2;
}
///
public override int Test(string str)
{
return str.Length + base.Test(str);
}
}
}
#endif