15 lines
250 B
C#
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);
|
|
}*/
|
|
|
|
} |