using System;
namespace SMAPI.Tests
{
/// Provides sample values for unit testing.
internal static class Sample
{
/*********
** Fields
*********/
/// A random number generator.
private static readonly Random Random = new Random();
/*********
** Accessors
*********/
/// Get a sample string.
public static string String()
{
return Guid.NewGuid().ToString("N");
}
/// Get a sample integer.
public static int Int()
{
return Sample.Random.Next();
}
}
}