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
jtulach@0
     1
package org.apidesign.apifest08.test;
jtulach@0
     2
jtulach@0
     3
import junit.framework.TestCase;
jtulach@0
     4
jtulach@0
     5
/** 
jtulach@0
     6
 */
jtulach@0
     7
public class Task1Test extends TestCase {
jtulach@0
     8
    static {
jtulach@0
     9
        // your code shall run without any permissions
jtulach@0
    10
    }
jtulach@0
    11
    
jtulach@0
    12
    public Task1Test(String testName) {
jtulach@0
    13
        super(testName);
jtulach@0
    14
    }
jtulach@0
    15
jtulach@0
    16
    @Override
jtulach@0
    17
    protected void setUp() throws Exception {
jtulach@0
    18
    }
jtulach@0
    19
jtulach@0
    20
    @Override
jtulach@0
    21
    protected void tearDown() throws Exception {
jtulach@0
    22
    }
jtulach@0
    23
    
jtulach@0
    24
    
jtulach@0
    25
    public void testCurrencyCZKUSD() throws Exception {
jtulach@0
    26
        
jtulach@0
    27
    }
jtulach@0
    28
}