Hey all,
I’ve come to the point in my progression as a developer where my code is massive and incredibly hard to make stable. After listening to several hundred hours of podcasts I’ve determined that I really should adopt test driven development as a way to overcome these hurdles.
However, It seems there are hundreds of tutorials and frameworks on the googles, and each are slightly different from the other. Given that I have no practical experience writing unit tests and my current build environment is:
- Java 8
- dependencies are handled and project is built using gradle
- IDE is Eclipse
- Many of my class methods are mathematical in nature
Do you have any specific suggestions which might lessen the learning curve a bit?
thanks!
-el_min