taskx/jtulach/against-solutionXY/test/apifest/CurrencyTest.java
changeset 14 d907b216f8a1
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/taskx/jtulach/against-solutionXY/test/apifest/CurrencyTest.java	Mon Sep 29 06:31:19 2008 +0200
     1.3 @@ -0,0 +1,17 @@
     1.4 +package apifest;
     1.5 +
     1.6 +import junit.framework.TestCase;
     1.7 +import org.apidesign.apifest08.currency.Convertor;
     1.8 +
     1.9 +
    1.10 +/** Write a test that works with version from task A and fails with version B.
    1.11 + */
    1.12 +public class CurrencyTest extends TestCase {
    1.13 +    public CurrencyTest(String n) {
    1.14 +        super(n);
    1.15 +    }
    1.16 +    
    1.17 +    public void testCompatibility() throws Exception {
    1.18 +        Convertor c = null;
    1.19 +    }
    1.20 +}