Skip to main content

Test case generator. Quickly design and generate test cases without all the bulk

Project description

tcgen

Yet another test case generator (But hopefully better)

Quickly and painlessly generate testcases with a minimal amount of code

Installation

python3.7 -m pip install cp-tcgen

Capabilities

tcgen creates several endpoints to generate data with several different methods

Primitives

Primitive
Integer
Bool
Float
Char
Prime

Datatypes

Array
String
NonDecreasing
StrictlyIncreasing
Permutation
Graph
Tree
LineGraph
Grid
DAG
StarGraph
KRegularTree

Examples

https://dmoj.ca/problem/dpa

from tcgen import *
# Bounds are 1..1e5 by default
N = Integer(2, 100000)
print(N)
print(Array(N, Integer(10000)))

https://dmoj.ca/problem/dpb

from tcgen import *
class Gen(Generator):
    def generate(self, case_num):
        N = Integer(L=2, wcnt=20)  # Weighted random
        K = Integer(100)
        self.p(N, K)
        self.p(Array(N, U=10000))

gen = Gen()
print(gen.get_test_cases(10))
print(gen.get_test_case())
from tcgen import *
A, B = Integer(), Integer()
print(A, B)
# 1 <= N <= A+B
N = Integer(A + B)
print(N)
from tcgen import *
N = Integer()
print(N)
M = Integer(2 * N)
print(M)
print(Graph(N, M).shuffle())
from tcgen import *
N = Integer()
print(N)
print(StrictlyIncreasing(N).shuffle())

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

cp-tcgen-0.11.1.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

cp_tcgen-0.11.1-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file cp-tcgen-0.11.1.tar.gz.

File metadata

  • Download URL: cp-tcgen-0.11.1.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for cp-tcgen-0.11.1.tar.gz
Algorithm Hash digest
SHA256 bc4693ab2c650c7b0a04d6a7215e9cd5909a5180fb5c6704abc0d65273cd883c
MD5 bd0e3824610d3017560a60a33c33658f
BLAKE2b-256 79e1078b99629f6ab05be879d1ee5ba0cf98d7339cc298f692e7ba70313620df

See more details on using hashes here.

File details

Details for the file cp_tcgen-0.11.1-py3-none-any.whl.

File metadata

  • Download URL: cp_tcgen-0.11.1-py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for cp_tcgen-0.11.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b69738282fe8622082a22a3310c9305a58b56a121866b8ba90b39c031cb35dc7
MD5 36b57a8eee381add3c6aa63c7c9a9fea
BLAKE2b-256 17bfab3a703718454ec681e995e433a70b2b4ef1967e9ab133b43fbd83f776d1

See more details on using hashes here.

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