Files
speckle-sharp-sdk/tests/Speckle.Sdk.Tests.Unit/SpeckleVerify.cs
T
Jedd Morgan e938725d35 Added extra test for GetMembers (#290)
* Added extra test for GetMembers

* fixed tests

* verify

* Format

* Run the module init on unit tests and make it json

* update deps

* gitignore support was disabled in csharpier 1.0.1

---------

Co-authored-by: Adam Hathcock <adam@hathcock.uk>
2025-04-30 16:13:41 +01:00

21 lines
351 B
C#

using System.Runtime.CompilerServices;
namespace Speckle.Sdk.Tests.Unit;
public static class SpeckleVerify
{
private static bool _initialized;
[ModuleInitializer]
public static void Initialize()
{
if (_initialized)
{
return;
}
global::Speckle.Sdk.Testing.SpeckleVerify.Initialize();
_initialized = true;
}
}