; TotT Naming Unit Tests Responsibly | Google Operating System News

Tuesday 26 July 2011

TotT Naming Unit Tests Responsibly

TotT Naming Unit Tests Responsibly

For a class, try having a corresponding set of test methods, where each one describes a responsibility of the object, with the first word implicitly the name of the class under test. For example, in Java:
class HtmlLinkRewriterTest ... {
    void testAppendsAdditionalParameterToUrlsInHrefAttributes(){?}
    void testDoesNotRewriteImageOrJavascriptLinks(){?}
    void testThrowsExceptionIfHrefContainsSessionId(){?}
    void testEncodesParameterValue(){?}
  }
This can be read as:
HtmlLinkRewriter appends additional param to URLs in href attrs.
   HtmlLinkRewriter does not rewrite image or JavaScript links.
   HtmlLinkRewriter throws exception if href contains session ID.
   HtmlLinkRewriter encodes parameter value.   

Benefits
The tests emphasizes the object's responsibilities (or features) rather than public methods and inputs/output. This makes it easier for future engineers who want to know what it does without having to delve into the code.
These naming conventions can help point out smells. For example, when it's hard to construct a sentence where the first word is the class under test, it suggests the test may be in the wrong place. And classes that are hard to describe in general often need to be broken down into smaller classes with clearer responsibilities.
Additionally, tools can be used to help understand code quicker:


(This example shows a class in IntelliJ with the TestDox plugin giving an overview of the test.)

Remember to download this episode of Testing on the Toilet, print it, and flyer your office.

No comments:

Post a Comment