-
-
Notifications
You must be signed in to change notification settings - Fork 320
Expand file tree
/
Copy pathSample.cs
More file actions
29 lines (24 loc) Β· 600 Bytes
/
Sample.cs
File metadata and controls
29 lines (24 loc) Β· 600 Bytes
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
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();
/*********
** 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();
}
}