currency/test/org/apidesign/apifest08/test/Task1Test.java
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 19 Sep 2008 23:16:43 +0200
changeset 0 e0003d2fb0c2
child 1 676b4c07fa0a
permissions -rw-r--r--
Base skeleton for the CZJUG API Fest 2008
     1 package org.apidesign.apifest08.test;
     2 
     3 import junit.framework.TestCase;
     4 
     5 /** 
     6  */
     7 public class Task1Test extends TestCase {
     8     static {
     9         // your code shall run without any permissions
    10     }
    11     
    12     public Task1Test(String testName) {
    13         super(testName);
    14     }
    15 
    16     @Override
    17     protected void setUp() throws Exception {
    18     }
    19 
    20     @Override
    21     protected void tearDown() throws Exception {
    22     }
    23     
    24     
    25     public void testCurrencyCZKUSD() throws Exception {
    26         
    27     }
    28 }