01: package experiments;
02:
03: import junit.framework.TestCase;
04:
05: /**
06: * Test corresponding class.
07: *
08: * @author Tin
09: * @version $Revision: 92 $
10: */
11: public class StaticClassTest extends TestCase {
12: public void testAdd() {
13: //Don't actually test but do invoke the method
14: StaticClass.sum(new int[] { 1, 2, 3 });
15: }
16: }
|