This commit is contained in:
Andrea Fioraldi 2021-04-07 09:30:54 +02:00
parent fd46388f63
commit 0d11a41038
3 changed files with 15 additions and 0 deletions

View File

@ -1 +1,7 @@
# Corpus # Corpus
The Corpus is where testcases are stored. A Testcase is defined as an Input and a set of related metadata like execution time for instance.
For instance, a Corpus can store testcases on disk, or in memory, or implement a cache to speedup on disk storage.
Usually, a testcase is added to the Corpus when it is considered as interesting.

View File

@ -1 +1,6 @@
# Generator # Generator
A Generator is a component designed to generate an Input from scratch.
Tipically, a random generator is used to generate random inputs.

View File

@ -1 +1,5 @@
# Mutator # Mutator
The Mutator is an entitiy that takes one or more Inputs and generates a new derived one.