DEV Community

Discussion on: Why You Should Be Unit Testing

Collapse
 
restoreddev profile image
Andrew Davis

Thanks! Typically you will write a test every time you fix a bug to verify the bug is fixed and to make sure it doesn't come back again.

Collapse
 
hilaberger92 profile image
Hila Berger

Do you use any unit testing frameworks?

Thread Thread
 
restoreddev profile image
Andrew Davis

I mostly use PHPUnit for PHP and Xunit for Swift though there are a lot of options.

Thread Thread
 
hilaberger92 profile image
Hila Berger

Do you know any frameworks for C#/C++?