Unit testing practices #7
Replies: 1 comment
-
Here are some tips which may help you to find and eliminate the bugs. None of them is either ultimate or definitive. Use them flexibly and rely on your intuition. Don't believe yourself – check everything twice.
|
Beta Was this translation helpful? Give feedback.
-
Guide to get started
The team will be following Test-Driven Development (TDD) methodology, which means tests will be written before the functional code.
The goal is to write tests that define the functionality to be implemented. Once the tests are in place, the code will be written to make those tests pass. If all tests pass, then the code meets all the defined requirements.
The team lead has made it clear that pull requests without tests for code should be rejected, emphasizing the importance of testing in the project.
Add a comment below to improve on these ideas or raise questions on this topic.
Beta Was this translation helpful? Give feedback.
All reactions