<PackageReference Include="NUnit" Version="3.0.0-rc-3" />

Randomizer

public class Randomizer : Random
public const string DefaultStringChars = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789_"

public static int InitialSeed { get; set; }

public Randomizer()

public Randomizer(int seed)

public static Randomizer CreateRandomizer()

public static Randomizer GetRandomizer(MemberInfo member)

public static Randomizer GetRandomizer(ParameterInfo parameter)

public string GetString(int outputLength, string allowedChars)

public string GetString(int outputLength)

public string GetString()

public bool NextBool()

public bool NextBool(double probability)

public byte NextByte()

public byte NextByte(byte max)

public byte NextByte(byte min, byte max)

public decimal NextDecimal()

public decimal NextDecimal(decimal max)

public decimal NextDecimal(decimal min, decimal max)

public double NextDouble(double max)

public double NextDouble(double min, double max)

public object NextEnum(Type type)

public T NextEnum<T>()

public float NextFloat()

public float NextFloat(float max)

public float NextFloat(float min, float max)

public long NextLong()

public long NextLong(long max)

public long NextLong(long min, long max)

public sbyte NextSByte()

public sbyte NextSByte(sbyte max)

public sbyte NextSByte(sbyte min, sbyte max)

public short NextShort()

public short NextShort(short max)

public short NextShort(short min, short max)

public uint NextUInt()

public uint NextUInt(uint max)

public uint NextUInt(uint min, uint max)

public ulong NextULong()

public ulong NextULong(ulong max)

public ulong NextULong(ulong min, ulong max)

public ushort NextUShort()

public ushort NextUShort(ushort max)

public ushort NextUShort(ushort min, ushort max)