samples/consistency/src-test/api/ArithmeticaTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:51:12 +0200
changeset 27 699c5a4f0fab
parent 26 913d1d0a7bdf
permissions -rw-r--r--
Using code snippets from the Lookup interface
     1 package api;
     2 
     3 import junit.framework.TestCase;
     4 
     5 /**
     6  *
     7  * @author Jaroslav Tulach <jtulach@netbeans.org>
     8  */
     9 public class ArithmeticaTest extends TestCase {
    10     
    11     public ArithmeticaTest(String testName) {
    12         super(testName);
    13     }            
    14 
    15     @Override
    16     protected void setUp() throws Exception {
    17         super.setUp();
    18     }
    19 
    20     @Override
    21     protected void tearDown() throws Exception {
    22         super.tearDown();
    23     }
    24 
    25 }