-
Core Java
Testing for expected exceptions in JUnit
Unit tests are used to verify that a piece of code operates as the developer expects it to. Sometimes, that…
Read More » -
Core Java
Java7 – A look back
I started writing a blog post on what’s new in the upcoming Java8 release, and thought I would start by…
Read More » -
Core Java
Java8
Java8 isn’t scheduled for for release until March 2014, but early release versions have been available for a while. Some…
Read More » -
Core Java
Stacks and Queues in Java
I have been working on some Java code recently that required both a stack and a queue. The choices to…
Read More » -
Software Development
Software Quality via Unit Testing
The following post is based on a talk I gave at Desert Code Camp 2013. See also the associated slide…
Read More » -
Core Java
Builder Pattern: Good for code, great for tests
I’ve found the builder design pattern occasionally useful in code, but frequently useful in tests. This article is a quick…
Read More »