task3/solution07/test/org/apidesign/apifest08/test/Task3Test.java
changeset 59 c1d43bc1e9c0
parent 57 be49855c7fa2
     1.1 --- a/task3/solution07/test/org/apidesign/apifest08/test/Task3Test.java	Fri Oct 10 22:10:25 2008 +0200
     1.2 +++ b/task3/solution07/test/org/apidesign/apifest08/test/Task3Test.java	Sat Oct 11 10:49:25 2008 +0200
     1.3 @@ -67,11 +67,6 @@
     1.4      }
     1.5  
     1.6      public void testFewQueriesForOnlineConvertor() {
     1.7 -        if (Boolean.getBoolean("ignore.failing")) {
     1.8 -            // implement me!
     1.9 -            return;
    1.10 -        }
    1.11 -
    1.12          Convertor c = createOnlineCZKUSDConvertor();
    1.13          doFewQueriesForOnlineConvertor(c);
    1.14      }
    1.15 @@ -114,11 +109,6 @@
    1.16      /** Join the convertors and show they behave sane.
    1.17       */
    1.18      public void testOnlineConvertorComposition() throws Exception {
    1.19 -        if (Boolean.getBoolean("ignore.failing")) {
    1.20 -            // implement me!
    1.21 -            return;
    1.22 -        }
    1.23 -        
    1.24          final Convertor c = Task2Test.merge(
    1.25              createOnlineCZKUSDConvertor(),
    1.26              Task1Test.createSKKtoCZK()