This commit is contained in:
h z
2024-11-30 20:12:13 +00:00
parent 33e6f36841
commit 6867f06b48
3 changed files with 70 additions and 0 deletions

15
tests/GlobalSetUp.cs Normal file
View File

@@ -0,0 +1,15 @@
using Skeleton.Utils.RandomEngines;
namespace Skeleton.Test;
[SetUpFixture]
public class GlobalSetUp
{
private const int RandomSeed = 33659722;
/*[SetUp]
public void SetUp()
{
RandomSource.SetSeed(RandomSeed);
}*/
}