Wait a minute! How can you possibly code faster when in fact you have to write more code? Test Driven Development requires additional (redundant?!) classes which only duplicates work. The “redundant” code has to be maintained and kept in sync with the main software. It might be good for some big companies (preferably at the other end of the world) but not for us. We all heard that.
Continue reading
Tag Archives: eclipse
Boost productivity with Eclipse shortcuts
Have you ever wondered how to improve productivity? There are many ways which requires different level of commitment and time to learn. One of the simplest yet very powerful is taking advantage of keyboard shortcuts in your IDE.
Continue reading
Running PHPUnit from Eclipse on a remote system
For the last few years I’ve been using virtual machine to keep my dev Linux isolated from my desktop. Recently I decided to improve my test driven development by integrating PHPUnit with Eclipse. I didn’t want to waste time on switching between IDE and console to run a test. The challenge is to create an external tool which will SSH into the remote server, run tests and feedback to Eclipse. In fact this method lets you do anything on the remote server, not only unit test.
Continue reading