ParkSquare.Testing.Helpers 3.4.7

dotnet add package ParkSquare.Testing.Helpers --version 3.4.7
NuGet\Install-Package ParkSquare.Testing.Helpers -Version 3.4.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ParkSquare.Testing.Helpers" Version="3.4.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ParkSquare.Testing.Helpers --version 3.4.7
#r "nuget: ParkSquare.Testing.Helpers, 3.4.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ParkSquare.Testing.Helpers as a Cake Addin
#addin nuget:?package=ParkSquare.Testing.Helpers&version=3.4.7

// Install ParkSquare.Testing.Helpers as a Cake Tool
#tool nuget:?package=ParkSquare.Testing.Helpers&version=3.4.7

Test Data Generators

Build Status

Background

This package contains various fluent style data generators and extension methods for constrained non-determinism in your unit tests, integration tests, general automation projects and mock-ups. These are great for generating values within certain boundaries, or for creating real-world dummy data that will pass validation algorithms.

Bank Account Number

Bank account number generated by this will pass LUHN checksum and conform to UK bank account standards.

var accountNumber = AccountNumberGenerator.AnyValidAccountNumber();
Console.WriteLine(accountNumber);

Credit Card Generator

Card numbers will pass the LUHN checksum, and can specifically generate debit or credit card numbers, or ones that meet the validation checks for Visa or Mastercard.

Console.WriteLine(CreditCardGenerator.AnyCardNumber());
Console.WriteLine(CreditCardGenerator.AnyCreditCardNumber());
Console.WriteLine(CreditCardGenerator.AnyDebitCardNumber());
Console.WriteLine(CreditCardGenerator.AnyMastercardCreditCardNumber());
Console.WriteLine(CreditCardGenerator.AnyMastercardDebitCardNumber());
Console.WriteLine(CreditCardGenerator.AnyVisaCreditCardNumber());
Console.WriteLine(CreditCardGenerator.AnyVisaDebitCardNumber());

Sort Code Generator

This generates a valid UK six-digit sort code, with or without formatting.

Console.WriteLine(SortCodeGenerator.AnyValidSortCode());
Console.WriteLine(SortCodeGenerator.AnyValidSortCodeWithDashes());

Random Array Item

var testArry = new[] {"One", "Two", "Three"};
var randomItem = testArry.AnyElement();
Console.WriteLine(randomItem);

Boolean Generator

Console.WriteLine(BooleanGenerator.IsCoinTossHeads());

Byte Generator

Console.WriteLine(ByteGenerator.AnyByte());

foreach (var b in ByteGenerator.AnyByteArrayOfSize(10))
{
	Console.WriteLine(b);
}

Double Generator

Console.WriteLine(DoubleGenerator.AnyDouble());
Console.WriteLine(DoubleGenerator.AnyPositiveDouble());
Console.WriteLine(DoubleGenerator.AnyNegativeDouble());

Char Generator

Console.WriteLine(CharGenerator.RandomAlpha());
Console.WriteLine(CharGenerator.RandomAlphaNumeric());
Console.WriteLine(CharGenerator.RandomChar());
Console.WriteLine(CharGenerator.RandomDigit());

Dates & Times

Dates and times relative to current date/time

Console.WriteLine(DateTime.Now.AnyTime());
Console.WriteLine(DateTime.Now.AnyDifferentTime());
Console.WriteLine(DateTime.Now.AnyTimeOtherThan(new TimeSpan(1, 2, 3, 4)));

Console.WriteLine(DateTimeGenerator.FirstDayOfThisMonth());
Console.WriteLine(DateTimeGenerator.FirstDayOfMonth(DateTime.Now));
Console.WriteLine(DateTimeGenerator.LastDayOfThisMonth());
Console.WriteLine(DateTimeGenerator.LastDayOfMonth(DateTime.Now));
Console.WriteLine(DateTimeGenerator.Today());
Console.WriteLine(DateTimeGenerator.Tomorrow());

General date/time generators

Methods ending in 'Date' will have midnight (00:00:00) as the time portion, ones ending in 'DateTime' will have a random time.

Console.WriteLine(DateTimeGenerator.AnyDate());
Console.WriteLine(DateTimeGenerator.AnyTime());
Console.WriteLine(DateTimeGenerator.AnyDateAfter(DateTime.Now));
Console.WriteLine(DateTimeGenerator.AnyDateBefore(DateTime.Now));
Console.WriteLine(DateTimeGenerator.AnyDateBetween(DateTime.Now, new DateTime(2099, 1, 1)));
Console.WriteLine(DateTimeGenerator.AnyDateExcept(DateTime.Now));
Console.WriteLine(DateTimeGenerator.AnyDateTime());
Console.WriteLine(DateTimeGenerator.AnyDateTimeAfter(DateTime.Now));
Console.WriteLine(DateTimeGenerator.AnyDateTimeExcept(DateTime.Now));

Pair of dates

These can be useful when you need a time period with a set start and end date.

var pair1 = DateTimeGenerator.AnyPairOfDateTimes();
Console.WriteLine(pair1.Min + ", " + pair1.Max);

var pair2 = DateTimeGenerator.AnyPairOfDates();
Console.WriteLine(pair2.Min + ", " + pair2.Max);

var relative1 = DateTimeGenerator.AnyRelativeDateTimes();
Console.WriteLine("Now: " + relative1.Now + " Past: " + relative1.InThePast + " Future: " + relative1.InTheFuture);

Decimal Generator

var d1 = 1.23M;
Console.WriteLine(d1.LimitedBy(1, 2));
Console.WriteLine(d1.ReverseSign());
Console.WriteLine(d1.Absolute());

Console.WriteLine(DecimalGenerator.AnyCurrencyAmount());
Console.WriteLine(DecimalGenerator.AnyCurrencyAmountGreaterThan(100));
Console.WriteLine(DecimalGenerator.AnyDecimalInHalfOpenRange(10, 100));
Console.WriteLine(DecimalGenerator.AnyPositiveCurrencyAmount());

Email Address Generator

This will generate e-mail addresses that will pass most e-mail validation algorithms.

Console.WriteLine(EmailAddressGenerator.AnyEmailAddress());

Random Items (Enumerable)

var e1 = new[] {"one", "two", "three", "four", "five"};
var e2 = e1.Shuffle();
foreach (var e in e2) Console.WriteLine(e);

Console.WriteLine(e1.AnyItem());

e1.ForEach(Console.WriteLine);

Generate Lists & Collections

var e3 = EnumerableGenerator.BoundedSequence(10, CreateNewThing);
e3.ForEach(Console.WriteLine);

var e4 = EnumerableGenerator.UniqueBoundedSequence(10, CreateNewThing);
e4.ForEach(Console.WriteLine);

Random Enum Value

Console.WriteLine(EnumGenerator.AnyEnumValue<ThingEnumeration>());
Console.WriteLine(EnumGenerator.AnyEnumValueExcept(ThingEnumeration.Hello));
Console.WriteLine(EnumGenerator.AnyEnumValueIn(ThingEnumeration.Hello, ThingEnumeration.World));

Integer Generator

Console.WriteLine(IntegerGenerator.AnyInteger());
Console.WriteLine(IntegerGenerator.AnyIntegerInHalfOpenRange(100, 1000));

var i1 = IntegerGenerator.AnyIntegerListOfSize(10);
i1.ForEach(Console.WriteLine);

var i2 = IntegerGenerator.UniquePositiveIntegerListOfSize(10);
i2.ForEach(Console.WriteLine);

Ip Address Generator

This will generate valid IP v4 addresses.

Console.WriteLine(IpAddressGenerator.AnyIpAddress());
IpAddressGenerator.GenerateRandomNonRepeatingIpAddresses(10).ForEach(Console.WriteLine);

Luhn Generator

This will generate a number of the required length, where the last digit is a valid Luhn check digit. This is the algorithm commonly used by bank accounts and credit card numbers, so if the standard UK lengths are not suitable, then use this instead.

Console.WriteLine(LuhnGenerator.AnyValidNumber(10));
Console.WriteLine(LuhnGenerator.CalculateCheckDigit("12345"));

Name Generator

These generators will create random names and titles, with the ability to have specific male or female forenames if required.

Console.WriteLine(NameGenerator.AnyName());
Console.WriteLine(NameGenerator.AnyAdultTitle());
Console.WriteLine(NameGenerator.AnyChildTitle());
Console.WriteLine(NameGenerator.AnyFemaleForename());
Console.WriteLine(NameGenerator.AnyMaleForename());
Console.WriteLine(NameGenerator.AnyForename());
Console.WriteLine(NameGenerator.AnyMaleName());
Console.WriteLine(NameGenerator.AnyFemaleName());
Console.WriteLine(NameGenerator.AnySurname());
Console.WriteLine(NameGenerator.AnyTitle());

National Insurance Number Generator (NINO)

This will generate a valid UK National Insurance number, with or without formatting.

Console.WriteLine(NationalInsuranceNumberGenerator.Any());
Console.WriteLine(NationalInsuranceNumberGenerator.AnyFormatted());

Postcode Generator

This will generate a valid UK postcode that is either a genuine postcode somewhere in the country, or one that may not necessarily be real but which passes most standard validation algorithms.

Console.WriteLine(PostcodeGenerator.AnyPostcode());
Console.WriteLine(PostcodeGenerator.AnyValidPostcode());

Short Generator

Console.WriteLine(ShortGenerator.AnyShort());
Console.WriteLine(ShortGenerator.AnyShortInHalfOpenRange(10, 100));

String Generator

Console.WriteLine(StringGenerator.AnyNonNullString());
Console.WriteLine(StringGenerator.AnyEmptyOrWhitespaceString());
Console.WriteLine(StringGenerator.AnyStringOfSizeAndCase(100, CaseType.TitleCase));
Console.WriteLine(StringGenerator.SequenceOfAlphaNumerics(10));
Console.WriteLine(StringGenerator.SequenceOfAlphas(10));
Console.WriteLine(StringGenerator.SequenceOfDigits(10));

Telephone Number Generator

This can generate a landline or mobile telephone number that will pass validation checks.

Console.WriteLine(TelephoneNumberGenerator.AnyLandlineNumber());
Console.WriteLine(TelephoneNumberGenerator.AnyMobileNumber());
Console.WriteLine(TelephoneNumberGenerator.AnyTelephoneNumber());

User Agent Generator

This will generate a user agent string.

Console.WriteLine(UserAgentGenerator.AnyUserAgent());
Console.WriteLine(UserAgentGenerator.GoogleBotUserAgent());
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.4.7 13,305 8/22/2022
3.4.5 929 8/19/2022
3.4.4 25,308 11/22/2021
3.4.2 10,107 5/16/2021
3.4.1 1,885 4/18/2021
3.4.0 27,831 2/11/2020
3.3.0 9,272 9/2/2019
3.2.3 3,302 7/2/2019
3.2.2 1,799 6/5/2019
3.2.1 1,133 6/5/2019
3.2.0 1,261 6/4/2019
3.1.0 34,091 1/17/2019
2.5.2 16,910 7/4/2018
2.5.1 4,545 1/29/2018
2.5.0 1,581 1/29/2018
2.4.2 2,356 6/30/2017
2.4.1 1,708 6/6/2017
2.4.0 1,515 6/6/2017
2.3.0 1,550 6/2/2017
2.2.6 1,753 3/6/2017
2.2.5 1,604 3/6/2017
2.2.4 1,501 3/6/2017
2.2.3 1,719 2/20/2017
2.2.2 1,732 2/2/2017
2.2.1 1,585 2/1/2017
2.2.0 1,715 1/8/2017
2.1.55 1,554 1/3/2017
2.1.54 1,511 1/3/2017
2.1.53 3,152 9/23/2016
2.1.51 3,218 4/6/2016
2.1.50 1,825 3/26/2016
2.1.49 1,571 3/25/2016
2.1.48 1,582 3/25/2016
2.1.47 1,592 3/25/2016
2.1.46 1,504 3/25/2016
2.1.45 1,548 3/25/2016
2.1.44 1,927 3/14/2016
2.1.43 1,536 3/14/2016
2.1.42 1,617 3/14/2016
2.1.41 1,714 3/11/2016
2.1.40 1,677 3/10/2016
2.1.39 1,616 3/10/2016
2.1.38 1,862 2/20/2016
2.1.37 1,600 2/20/2016
2.1.36 1,566 2/20/2016
2.1.35 1,606 2/20/2016
2.1.34 1,573 2/18/2016
2.1.33 1,576 2/18/2016
2.1.32 1,568 2/18/2016
2.1.31 2,081 2/14/2016
2.1.30 1,672 2/13/2016
2.1.29 1,559 2/10/2016
2.1.28 1,543 2/7/2016
2.1.27 1,584 2/6/2016
2.1.26 1,555 2/6/2016
2.1.25 1,511 2/6/2016
2.1.24 1,563 2/6/2016
2.1.23 1,599 2/3/2016
2.1.22 2,135 2/1/2016
2.1.19 1,564 1/29/2016
2.1.0 2,702 1/14/2016
2.0.6 2,010 12/23/2015
2.0.5 1,797 12/22/2015
2.0.4 1,864 8/15/2015
2.0.3 1,535 8/15/2015
2.0.2 2,035 8/14/2015
2.0.1 2,428 7/29/2015
2.0.0 1,762 7/29/2015