e938725d35
* 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>
21 lines
351 B
C#
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;
|
|
}
|
|
}
|