Generating test data #150
AttilaMihaly
started this conversation in
Ideas
Replies: 3 comments 2 replies
-
Could you elaborate on how Morphir's solution provides more than and why someone would want to choose that over the technologies you mentioned? |
Beta Was this translation helpful? Give feedback.
1 reply
-
So from the perspective of someone deciding whether or not to use Morphir, the advantage is that it saves you from writing custom generators?
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Check out the corresponding proposal here: #154 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem Statement
During testing we often need to feed the system with some data. In some cases such as volume testing or property-based testing we don't care about the specific values only that they are valid. There are many tools out there to generate arbitrary data and they all rely on some kind of description of the shape of the data and potential constraints. Some do this with description languages, others use combinator libraries that allow you to compose generators (property-based testing frameworks tend to do this).
The Morphir IR already contains all the necessary information so we could automate this and as a Morphir user you could get this for free.
User Stories
Beta Was this translation helpful? Give feedback.
All reactions