Skip to main content

Tese cases generating helper tool.

Project description

TestCaseElf

Tese cases generating helper tool

1. Objective

  1. Specific the range of each field and output the product of the test case in a key-value fashion
  2. Ability to chain each combination (In a pipe)
  3. Out put the test cases in different format such as JSON/pandas.DataFrame/CSV

2. Expected Behavior

Using pipeline:

(
    Field(region='Earthman')
    * Field(lastname=['Jackson', 'Gadot'])
    * Field(firstname=['Michael', 'Gal'])
    + Field(age=10)
) -> 
[
   {
      "age":10,
      "firstname":"Michael",
      "lastname":"Jackson",
      "region":"Earthman"
   },
   {
      "age":10,
      "firstname":"Gal",
      "lastname":"Jackson",
      "region":"Earthman"
   },
   {
      "age":10,
      "firstname":"Michael",
      "lastname":"Gadot",
      "region":"Earthman"
   },
   {
      "age":10,
      "firstname":"Gal",
      "lastname":"Gadot",
      "region":"Earthman"
   }
]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

TestCaseElf-0.0.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

TestCaseElf-0.0.1-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page