TDD in WordPress using PHPUnit
In this article I’ll show you how to create and run unit tests on your plugins using PHPUnit as the¬†framework. I’ll also be highlighting the importance of Test Driven Development.
WHY TDD?
There are some developers out there who are not fans of writing unit tests to test their code for bugs etc, but I’m not one of them. On the contrary I always write tests for my code. There are so many instances where these tests have picked up bugs. Not only that, writing tests has also made my code more efficient and in turn made me a better…