summaryrefslogtreecommitdiff
path: root/src/SMAPI.Tests/Sample.cs
blob: 99835d92d344b811cf73b70bb21db91e1c8185a1 (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 StardewModdingAPI.Tests
{
    /// <summary>Provides sample values for unit testing.</summary>
    internal static class Sample
    {
        /*********
        ** Properties
        *********/
        /// <summary>A random number generator.</summary>
        private static readonly Random Random = new Random();


        /*********
        ** Properties
        *********/
        /// <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();
        }
    }
}