…
Each set is randomly generated to simulate real data.
Test data is actually the input given to a software program. It represents data that affects or is affected by the execution of the specific module. Some data may be used for positive testing, typically to verify that a given set of input to a given function produces an expected result. Other data may be used for negative testing to test the ability of the program to handle unusual, extreme, exceptional, or unexpected input. Poorly designed testing data may not test all possible test scenarios which will hamper the quality of the software.
Testing is an iterative part of the development process that it performed to ensure the quality of the code. During the development process you will need fake data similar to real data for testing purposes.
The following list of data will be auto generated:
Email, Safe Email, Free Email, Company Email, Safe Email Domain, Free Email Domain, User Name, Password, URL, Domain Name, Domain Word, TLD, Web Page Slug Address, ipv4/IP v4, Address, local Ipv4, ipv6/IP v6 Address, MAC Address, UUID.
Test data is actually the input given to a software program. It represents data that affects or is affected by the execution of the specific softwar feature. Some data may be used for positive testing, typically to verify that a given set of input to a given function produces an expected result. Other data may be used for negative testing to test the ability of the program to handle unusual, extreme, exceptional, or unexpected input.
Email : Generate an email address.
// 'orval.treutel@blick.com', 'hickle.lavern@erdman.com'
Safe Email : Generate a safe email address.
// 'spencer.ricardo@example.com', 'wolf.sabryna@example.org'
Free Email : Generate a free email address (free, as in, free sign-up).
// 'marcelino.hyatt@yahoo.com', 'abby81@gmail.com'
Company Email : Generate a company email.
// 'hschinner@reinger.net', 'paula.blick@hessel.com'
Free Email Domain : Generate a free email domain name.
// 'gmail.com', 'hotmail.com'
Safe Email Domain : Generate a safe email domain.
// 'example.net', 'example.org'
User Name : Generate a username.
// 'ipaucek', 'homenick.alexandre'
Password : Generate a password, with a given minimum and maximum length. By default, the values 6 and 20 are used for the minimum and maximum respectively.
// 'dE1U[G$n4g%-Eie[]rn[', '-YCc1t|NSh)U&j6Z'
// 'GK,M|', '/ZG.'
Domain Name : Generate a domain name.
// 'toy.com', 'schamberger.biz'
Domain Word : Generate a domain word.
// 'feil', 'wintheiser'
TLD : Generate a tld (top-level domain).
// 'com', 'org'
URL : Generate a URL.
// 'http://cormier.info/eligendi-rem-omnis-quia.html', 'http://pagac.com/'
Slug : Generate a slug, with a given amount of words. By default, the amount of words it set to 6.
// 'facere-ipsam-sit-aut-ut-dolorem', 'qui-soluta-sed-facilis-est-ratione-dolor-autem'
// 'et-et-et', 'temporibus-iure'
IPv4 : Generate an IPv4 address.
// '90.119.172.201', '84.172.232.19'
Local IPv4 : Generate an IPv4 address, inside a local subnet.
// '192.168.85.208', '192.168.217.138'
IPv6 : Generate an IPv6 address.
// 'c3f3:40ed:6d6c:4e8e:746b:887a:4551:42e5', '1c3d:a2cf:80ad:f2b6:7794:4f3f:f9fb:59cf'
Mac Address : Generate a random MAC address.
'94:00:10:01:58:07', '0E:E1:48:29:2F:E2'
Before software can be reusable it first has to be usable.
Ralph Johnson
…
…