Tag: Java
-
Testing equals And hashCode Using EqualsVerifier
I learned about EqualsVerifier from a technical coach I know. A few months ago we met (not for the first time) at a conference we both spoke at, and after a collaborative hands-on session in ATDD (acceptance-test-driven development) we talked about TDD and ATDD, and how these practices lead to…
-

Snake in JavaFX (Part 2)
Intro In part 1 we prepared the JavaFX project for drawing 2D graphics and implemented some of the basic snake logic with TDD (test-driven development): Basic movement, colliding with walls, growing the snake when it eats the food. Oh, and the two of you who have been waiting for part…
-

Snake in JavaFX (Part 1)
Intro Programming games is one of the most fun areas of software development to me. Apart from the design of new game mechanics and fictitious worlds, I find the technical challenges very rewarding and a good practice for programming in general. Surely I wouldn’t need to program these arcade classics…
