taskx/jtulach/against-solutionXY/test/apifest/CurrencyTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 29 Sep 2008 06:31:19 +0200
changeset 14 d907b216f8a1
permissions -rw-r--r--
Base for the taskx - the verification infrastructure
     1 package apifest;
     2 
     3 import junit.framework.TestCase;
     4 import org.apidesign.apifest08.currency.Convertor;
     5 
     6 
     7 /** Write a test that works with version from task A and fails with version B.
     8  */
     9 public class CurrencyTest extends TestCase {
    10     public CurrencyTest(String n) {
    11         super(n);
    12     }
    13     
    14     public void testCompatibility() throws Exception {
    15         Convertor c = null;
    16     }
    17 }