Download the PHP package yuriy-sorokin/boundary-data-faker without Composer
On this page you can find all versions of the php package yuriy-sorokin/boundary-data-faker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download yuriy-sorokin/boundary-data-faker
More information about yuriy-sorokin/boundary-data-faker
Files in yuriy-sorokin/boundary-data-faker
Download yuriy-sorokin/boundary-data-faker
More information about yuriy-sorokin/boundary-data-faker
Files in yuriy-sorokin/boundary-data-faker
Vendor yuriy-sorokin
Package boundary-data-faker
Short Description A library to generate boundary condition values for your tests
License MIT
Package boundary-data-faker
Short Description A library to generate boundary condition values for your tests
License MIT
Please rate this library. Is it a good library?
Informations about the package boundary-data-faker
Boundary data faker
To properly test boundary conditions of your form / entity, you need to generate quite a lot of data, which exceeds boundary conditions / values.
Say, you have User entity with 2 required fields name
and email
, and 1 optional, which is age
.
The validation rules are:
- name
- 3-20 chars long
- email
- 5-50 chars long
- a regular expression
- age
- numeric
- greater then 18
In order to have all cases, which must throw an exception covered, you need to manually create quite a big amount of data:
- ['name' => '']
- ['name' => '12']
- ['name' => 'a string, which length is more than 20 chars']
- ['email' => '']
- ['email' => '1234']
- ['email' => 'a string, which length is more than 50 chars']
- ['age' => 'string']
- ['age' => 0]
All versions of boundary-data-faker with dependencies
PHP Build Version
Package Version
No informations.
The package yuriy-sorokin/boundary-data-faker contains the following files
Loading the files please wait ....