-
Notifications
You must be signed in to change notification settings - Fork 273
Open
Description
What was wrong?
Though there is clear value in using property testing for certain kinds of tests (such as end-to-end encoding tests), I've recently had some doubts about some other ways we're using property testing.
To a large extent, that property test and others like it seem to be testing second implementations of functionality against the original implementations. This doesn't provide much value since the original implementation could have a flaw which wouldn't be revealed by testing it against a second implementation that uses the same logic.
How can it be fixed?
It seems like we should replace these kinds of property tests with traditional tests that check for correct behavior given specific inputs.