Best of TDD — October 2022
- 1
- 2
Medium·4y
Introducing Jester ~ a foolproof solution for integration testing
Jester is an open-source, low-code application for auto-generating all of your integration tests for your codebase. It uses a detailed algorithm stored on the server side that parses and interprets assertions inputted by the user.
- 3
Community Picks·4y
2022 Minimalistic Web Developer Self Care Kit
The Odin Project is one of my favorite resources to learn web development. The Frontendmasters Frontend The Odin Project Reactiflux Tailwind Jamstack LearnWeb3DAO The Web Developer Bootcamp is the community discord for the udemy course the web developer bootcamp. Ask Questions: Is there anyone that knows React here?
- 4
Community Picks·4y
The truth about Test-Driven Development (TDD)
Customers feel like they are being cared for Conclusion Test-Driven Development is awesome and I love it. It is really fun to do when you're fixing a bug because you can reproduce the bug in the test, make sure it fails, and just focus on fixing the bug.
- 5
Python in Plain English·4y
Test-Driven Development in Python
Test-Driven Development is one of the eXtreme Programming paradigms created by Kent Beck in the late 90s. It allows us to express intent in the form of a test. We apply unit tests and integration tests to get clean and correctly working code. Performing these tests with TDD logic will deliver Let’s include membership: We have also passed the second test.