16 lines
331 B
C#
16 lines
331 B
C#
using System;
|
|
|
|
namespace IntegrationTests.Infrastructure
|
|
{
|
|
/// <summary>
|
|
/// A class holding global variables.
|
|
/// </summary>
|
|
public static class GlobalVariables
|
|
{
|
|
/// <summary>
|
|
/// A random number generator.
|
|
/// </summary>
|
|
public static Random Random = new Random();
|
|
}
|
|
}
|