Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between Unit Testing and Automated Testing?

Tags:

php

wordpress

I'm looking to use Unit Testing to help deploying WordPress websites, but I wonder if there's a difference between Unit Testing and Automated Testing?

Thank you

like image 460
michaelmcgurk Avatar asked Dec 25 '22 01:12

michaelmcgurk


1 Answers

In general unit testing is meant for the developers. When a developer writes the code he should ensure it is working in most common scenario. In .NET we use NUnit, MSUnit etc to test the code and the logic.

Automated testing usually happens on top of unit tested on the continuous integrated environments. Automated testing usually done by QA by using some tools like Selenium, Protractor, WinRunner etc.

Hope this helps.

like image 145
Kiran P Avatar answered Dec 27 '22 20:12

Kiran P