Files
Skeleton.Test/tests/GlobalSetUp.cs
2024-11-30 20:12:13 +00:00

15 lines
250 B
C#

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