by Jule | Jul 14, 2024 | Code review, Software Development, TDD
What are Code Reviews? Code reviews involve examining and discussing code changes proposed in a pull request (PR) before they are merged into the main codebase. This process allows developers to catch errors, improve code quality, and share knowledge. It is a...
by Jule | May 30, 2024 | Software Development, TDD
What is Test-Driven Development? Test-Driven Development (TDD) is a software development approach in which tests are written before the actual code. The process is cyclical and involves writing a test, running it to see it fail, writing the minimal code necessary to...