In a recent article, I covered the creation of JUnit tests to perform unit testing on Java classes. Although testing individual classes is helpful, unit tests work best when they're written to cover ...
Over the last two years, I spent some time developing a GUI application using Java Swing. The application was small, consisting of several classes in the MVC (Model-View-Controller) model, but was ...
A monthly overview of things you need to know as an architect or aspiring architect. Unlock the full InfoQ experience by logging in! Stay updated with your favorite authors and topics, engage with ...
JUnit 5 is a modular and extensible testing framework with support for Java 8 and higher JUnit 5 is composed of three things--a foundational platform, a new programming and extension model, Jupiter, ...
Alex Ruiz follows up his popular JavaOne 2007 presentation with this introduction to test-driven GUI development with FEST. Learn what differentiates FEST (formerly TestNG-Abbot) from other GUI ...
I'm a fan of unit testing in principle, however I never get around to doing it for four reasons: 1) The code is so trivial it will obviously work. 2) Writing a test will take orders of magnitude more ...