Lab 06 - Simple Java Classes and JUnit Testing

Recommended Reading:

Note: Some of the code used in the following reading differ from that used in class!

1. Writing Simple Java Classes (45 min)

First steps

  1. If you have not done it already, download the latest DrJava to your Desktop. Use this link.   Download the "latest developement" release!
  2. Create a lab06 directory within your Comp211 directory.
  3. Set your DrJava "Language Level" to "Functional" (aka "Elementary").  The Elementary language level simplifies the real Java syntax to facilitate the transition from Scheme to Java.
  4. Create a class to calculate the areas of rectangles in DrJava by following the steps below. We will begin the process of writing a class that represents a rectangle given its width and height. We will write the class in several small steps. At each step, we will compile the code to ensure that everything is syntactically correct. By compiling the code at each small step, we hope to avoid seeing a large number of error messages that can be rather intimidating.
  5. Now we are ready to add to Rectangle a method to compute the area of a rectangle. Change the definition of the Rectangle class to read:
    class Rectangle {
        double width;
        double height;
    
        // The only new lines:
        double area() {
           return width * height;
        }
    }
    

Defining Right Triangles and Circles

Suppose we want to define a class representing a right triangle given the length of the two sides forming the right angle, which we call base and height . What code should we write? Use the DrJava New command to
create a new document. In this document define a class called RightTriangle with fields of type double called base and height, and a method

double area()

to compute the area of this right triangle. Save and compile this file. Interact with it in the Interactions pane.

2. Unit Testing with JUnit (35 min)

Extreme Programming (XP) is a software development methodology that is "very hot" these days and is currently embraced by the software industry. One key element of XP, called "unit testing", is the idea of writing test code for functions (or procedures or object methods) before the functions (or procedures or object methods) are even written. (Don't ask me how to write test code for the test code themselves! The whole thing is "kinda" suspiciously recursive with no well-defined base cases.)

The test code becomes in effect the "documentation and specification" of the behavior of the functions (or procedures or object methods) in code form!

Each time a function (or procedure or object method) is modified, we require that it passes its existing test suite. Each time a test code for a function (or procedure or object method) is modified, the corresponding function (or procedure or object method) may have to be revised to satisfy the new specification. Tests and code must be developed in tandem.

JUnit (http:-www.junit.org) (www.junit.org) is an open source framework developed to support the above concept of unit testing for Java programs. This tutorial will lead you through a simple example of how to write unit test code in developing a (simple) Java program with only one class.

Step 0.

Run DrJava with Elementary Language level. We will do all development in DrJava since it has very nicely integrated JUnit with its development environment.

Step 1.

Suppose we want to model the notion of a smart person who knows his/her birthday and can compute the number of months till his/her next birthday given the current month. For our purpose, a month can simply be represented by an integer, which in Java is called int. We start by writing "stub" code for the class Person that is to represent our smart person.

class Person {
  /**
   * Computes the number of months till the next birthday given the current month.
   */
  int nMonthTillBD(int currentMonth) {
    // todo
  }
}

Notice in the above there is really no concrete code. As a matter of fact, the above would not compile. Now we must abandon everything and start writing test code for nMonthTillBD(...).

Step 2.

DrJava is very nice to you and will create a test stub class for you if you know what to click:

If you have the "stable release, v. 20100913-r5387, you may receive a compile error.  To remedy this,  at the top of the Test_Person file, add the line

import junit.framework.TestCase;

Or simply download and replace with a later version, e.g. the latest development version.

Also the test covers three cases:

The

assertEquals

method comes from the class TestCase and takes in three parameters:

Most of the time, your test code will call on the assertEquals method to test for equality between the result of the computation you are testing and the expected result.

When you compile the above code in DrJava, it won't compile. You will have to go in and fix the code for Person to make the test code compile.

Step 3.

Fix the code for Person until Test_Person compiles! (See the code below.)

First add a int field called _bMonth and compile. What happens?

Now add the statement return 0; to the body of the method nMonthTillBD(...) and compile.

class Person {
   int _bMonth;

   /**
    * Computes the number of months till the next birthday.
    */
   int nMonthTillBD(int currentMonth) {
      return 0;// todo
   }
}

Step 4.

After you have cleaned up your code for Person as shown in the above, you should be able to compile Test_Person. With Test_Person open, click on the Test button in DrJava tool bar.

What do you see? Something has failed! The formula for the number of months till the next birth day seems to be the culprit. We will pretend ignorance and fix the "bug" in two steps.

Step 5.1

Change the formula to

   int nMonthTillBD(int currentMonth) {
       return _bMonth - currentMonth; // todo
   }

Compile all and test again.

Still we have errors.

Step 5.2

Change the formula to

   int nMonthTillBD(int currentMonth) {
      return(_bMonth - currentMonth + 12) % 12;// todo
   }

Compile all and test again. Now everything should pass! You may now remove the TO DO comment from the code of nMonthTillBD.

In XP programming, only after a method has passed its unit test that you are allowed to proceed to another one.

3. Additional Reading:

Lecture notes on Object-Oriented Programming using Java by Dung X. Nguyen and Stephen B. Wong: http://cnx.org/content/col10213/latest
Here is another link for a more detailed discussion of JUnit testing uisng DrJava: http://cnx.rice.edu/content/m11707/latest/
The following link contains a more elaborate discussion on JUnit testting and a more involved example of testing: http://junit.sourceforge.net/doc/testinfected/testing.htm.