Best of TDDOctober 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    Advice for Junior Developers

    Writing tests is an example of a best practice, writes tests for everything. Do not use inheritance for code reuse at all when you are starting out. Write Object-Oriented code that is not STUPID.

  2. 2
    Article
    Avatar of medium_jsMedium·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. 3
    Article
    Avatar of communityCommunity 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. 4
    Article
    Avatar of communityCommunity 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. 5
    Article
    Avatar of inPlainEngHQPython 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.