Which tool can you recommend to easily generate test data? Tool must be able to read data schema to generate accurate data permutations and download them as csv files
For further actions, you may consider blocking this person and/or reporting abuse
Which tool can you recommend to easily generate test data? Tool must be able to read data schema to generate accurate data permutations and download them as csv files
For further actions, you may consider blocking this person and/or reporting abuse
Timeless DEV post...
The most used technology by developers is not Javascript.
It's not Python or HTML.
It hardly even gets mentioned in interviews or listed as a pre-requisite for jobs.
I'm talking about Git and version control of course.
Natalia D -
Ben Halpern -
Debbie O'Brien -
Ben Halpern -
Once suspended, sforce will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, sforce will be able to comment and publish posts again.
Once unpublished, all posts by sforce will become hidden and only accessible to themselves.
If sforce is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to sforce.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag sforce:
Unflagging sforce will restore default visibility to their posts.
Top comments (3)
I don't know what kind of language you're using, but I have used casual before and it worked well for my use case:
github.com/boo1ean/casual
ps. You may want to look into property based testing.
Awesome! Thanks Jonathan! I can use this on my side projects. However I was actually asking this for the platform where I can only import csv for test data population.
I'm not sure what the question is. Can you elaborate? I'm probably misunderstanding but you could generate a csv file randomly using aforementioned library. In the past I've used csv-parse and the same author has published a csv-stringify library:
npmjs.com/package/csv-stringify
I've never used this library but perhaps you could combine casual with this one to fit your needs.