コード例 #1
0
        /// <summary>
        /// Returns a random past (historical) DateTime by shifting the current UtcNow by a random number of days.
        /// </summary>
        /// <returns></returns>
        public static DateTime PastDate()
        {
            int minimum = (int)DateTime.UtcNow.Subtract(DateTime.MinValue).TotalDays * -1;
            int offset  = Arbitrary.Int32(minimum, 0);

            return(DateTime.UtcNow.AddDays(offset));
        }
コード例 #2
0
        private string GenerateString(int minimum, int maximum)
        {
            int upperCaseA = 65;
            int upperCaseZ = 90;
            int lowerCaseA = 97;
            int lowerCaseZ = 122;
            int length     = Arbitrary.Int32(minimum, maximum);

            StringBuilder builder = new StringBuilder();

            for (int i = 0; i < length; i++)
            {
                int c;
                if (Arbitrary.Boolean())
                {
                    c = Arbitrary.Int32(upperCaseA, upperCaseZ);
                }
                else
                {
                    c = Arbitrary.Int32(lowerCaseA, lowerCaseZ);
                }
                builder.Append((char)c);
            }

            return(builder.ToString());
        }
コード例 #3
0
        /// <summary>
        /// Returns a random future DateTime by shifting the current UtcNow by a random number of days.
        /// </summary>
        /// <returns></returns>
        public static DateTime FutureDate()
        {
            int maximum = (int)DateTime.MaxValue.Subtract(DateTime.UtcNow).TotalDays;
            int offset  = Arbitrary.Int32(0, maximum);

            return(DateTime.UtcNow.AddDays(offset));
        }
コード例 #4
0
        /// <summary>
        /// Returns a random past (historical) DateTime by shifting the current UtcNow by a random number of days.
        /// <para>The result will be greater than 1-Jan-1970.</para>
        /// </summary>
        /// <returns></returns>
        public static DateTime PastDateWin32()
        {
            DateTime min     = new DateTime(1970, 1, 1);
            int      minimum = (int)DateTime.UtcNow.Subtract(min).TotalDays * -1;
            int      offset  = Arbitrary.Int32(minimum, 0);

            return(DateTime.UtcNow.AddDays(offset));
        }
コード例 #5
0
        /// <summary>
        /// Returns a non-negative random value between 0 and the specified maximum.
        /// </summary>
        /// <param name="maximum">The inclusive upper bound of the random number to be generated, must be 256 or less.</param>
        /// <returns></returns>
        public static int Tiny(int maximum)
        {
            if (maximum > 256)
            {
                throw new ArgumentOutOfRangeException(nameof(maximum), "The maximum value of Tiny is 255.");
            }

            return((short)Arbitrary.Int32(0, maximum));
        }
コード例 #6
0
        private string GetString(int minimum, int maximum, string contains)
        {
            if (string.IsNullOrWhiteSpace(contains))
            {
                throw new ArgumentNullException(nameof(contains), "The argument cannot be null.or empty.");
            }

            int    length = contains.Length;
            string text   = GenerateString(minimum, maximum);

            // Determine the location to insert the 'contains' so the length on the result is not more than the maximum.
            int location = Arbitrary.Int32(0, text.Length - length);

            return(text.Insert(location, contains));
        }
コード例 #7
0
 /// <summary>
 /// Returns a non-negative random value between 0 and 255.
 /// </summary>
 /// <returns></returns>
 public static int Tiny()
 {
     return((short)Arbitrary.Int32(0, 256));
 }
コード例 #8
0
 /// <summary>
 /// Returns a random integer that is greater than or equal to the specified minimum and less than zero.
 /// </summary>
 /// <param name="minimum">The inclusive lower bound of the random number returned.</param>
 /// <returns></returns>
 public static int Negative(int minimum)
 {
     return(Arbitrary.Int32(minimum, 0));
 }
コード例 #9
0
 /// <summary>
 /// Returns a random integer that is greater than zero and less than or equal to Int32.MaxValue.
 /// </summary>
 /// <param name="maximum">The inclusive upper bound of the random number to be generated.</param>
 /// <returns></returns>
 public static int Positive(int maximum)
 {
     return(Arbitrary.Int32(1, maximum));
 }
コード例 #10
0
 /// <summary>
 /// Returns a random integer that is greater than or equal to Int32.MinValue and less than zero.
 /// </summary>
 /// <returns></returns>
 public static int Negative()
 {
     return(Arbitrary.Int32(int.MinValue, -1));
 }
コード例 #11
0
 /// <summary>
 /// Returns a random integer that is greater than zero and less than or equal to Int32.MaxValue.
 /// </summary>
 /// <returns></returns>
 public static int Positive()
 {
     return(Arbitrary.Int32(1, int.MaxValue));
 }
コード例 #12
0
 /// <summary>
 /// Returns a random integer that is within a specified range.
 /// </summary>
 /// <param name="minimum">The inclusive lower bound of the random number returned.</param>
 /// <param name="maximum">The inclusive upper bound of the random number to be generated.</param>
 public static int Int(int minimum, int maximum)
 {
     return(Arbitrary.Int32(minimum, maximum));
 }
コード例 #13
0
 /// <summary>
 /// Returns a non-negative random integer.
 /// </summary>
 /// <returns></returns>
 public static int Int()
 {
     return(Arbitrary.Int32());
 }
コード例 #14
0
 /// <summary>
 /// Returns a non-negative random short that is within a specified range.
 /// </summary>
 /// <param name="minimum">The inclusive lower bound of the random number returned.</param>
 /// <param name="maximum">The inclusive upper bound of the random number to be generated.</param>
 /// <returns></returns>
 public static short Short(short minimum, short maximum)
 {
     return((short)Arbitrary.Int32(minimum, maximum));
 }
コード例 #15
0
 /// <summary>
 /// Returns a non-negative random value between 0 and 32767.
 /// </summary>
 /// <returns></returns>
 public static short Short()
 {
     return((short)Arbitrary.Int32(0, short.MaxValue));
 }