blob: f4f0d88e3a712820a26cb09cfcea11e430f6bb51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
using System;
namespace SMAPI.Tests
{
/// <summary>Provides sample values for unit testing.</summary>
internal static class Sample
{
/*********
** Fields
*********/
/// <summary>A random number generator.</summary>
private static readonly Random Random = new Random();
/*********
** Accessors
*********/
/// <summary>Get a sample string.</summary>
public static string String()
{
return Guid.NewGuid().ToString("N");
}
/// <summary>Get a sample integer.</summary>
public static int Int()
{
return Sample.Random.Next();
}
}
}
|