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

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

Related posts

Leave a Reply

1 comment

  1. 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.