Code coverage tells us what percentage of our code is covered by tests. There are different code coverage types, and a well-tested codebase is usually...
9 challenges of managing PRs and how to solve them
Developers have been using Pull Requests to review code on branches before it reaches master for a very long time. However, this workflow is one of the...
08/09/2022
Functional and non-functional testing methods you should know about
An important metric of code quality is how much of your codebase is covered by tests, as we saw in a previous article about code coverage. Different...