how the debugging process can be used to help develop more secure, robust applications.
1
Expert's answer
2022-02-24T12:19:38-0500
If you find a design error tell the designers/developers on your team or in your company. Don’t do this to chastise the person that made it, we all make mistakes. Do it to broadcast the mistake so others won’t make it. This means that your organization will have to have a culture which allows this.
If the software you are writing can be tested with a regression test then write one. With each bug add tests to the regression test which will fail when that bug presents. Then fix the bug. By running the regression test you can assure yourself that the fix hasn’t reintroduced an old bug. This will pay big benefits later on in the application’s life as different programmers maintain it.
Comments
Leave a comment