Skip to content

Documentation

grewe edited this page Jan 23, 2020 · 1 revision

The HelloWorld_CS401_Project consists of a stand alone Java Application and a few Test classes (as simple as a HelloWorld application can get). The following discusses each "module" (here class) in our project. A real project would ofcourse have a more interesting documentation to offer.

1. HelloWorld_CS401.java - The main application class

This is it -- the entire enchilada of the code that makes up the running java application. It has a single method that will siply print a Hello World greeting to the user when the program is run

2. Dog.java - This is a SILLY class I made to illustrate JUnit Testing

This class represents a Dog and has attributes like name and owner and breed and age. It has also a getter and setter for name.

3. DogTest.java

This is the JUnit test class that exercises testing of the Dog class. See the JavaDoc and the code for more information.

4. JAVADOC link

Clone this wiki locally