Chapter 8: Designing Classes
Unit Test Frameworks - JUnit version 3
Packages
- Example packages: java.lang, java.util
- With BlueJ, you can add a New Package to a project under
the edit menu.
- A package named mathConstants would start with
this java statement - package mathConstants;
- To use this package, you would use this java statement -
import mathConstants;
Lecture Code