Checklist every developer should follow
1. Null safety checking
Null safety is one of the great things to check before merging any code. Null pointer exceptions are very common in general development and it leads to compilation error even crashes.
So whenever we take's value from user and...
fakhrulasa.xyz5 min read
Miki Szeles
Everything related to test automation
Great checklist Fakhrul. I completely agree with it except the comments. It is better to use meaningful variable and method names so you will have a live documentation. Very often comments are not updated with the code. I only write comments, in case I want to document why I did something that way. π