task3/solution13/test/org/apidesign/apifest08/test/Task3Test.java
changeset 59 c1d43bc1e9c0
parent 58 07c16ec15a25
     1.1 --- a/task3/solution13/test/org/apidesign/apifest08/test/Task3Test.java	Fri Oct 10 22:24:52 2008 +0200
     1.2 +++ b/task3/solution13/test/org/apidesign/apifest08/test/Task3Test.java	Sat Oct 11 10:49:25 2008 +0200
     1.3 @@ -71,11 +71,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 @@ -92,18 +87,11 @@
    1.16  
    1.17          // convert 15.97CZK to USD using c:
    1.18          assertEquals("Result is 15.98 CZK", new BigDecimal("1.00"), c.convertWithReversibleRates(currencyCZK, currencyUSD , new BigDecimal("15.97")).getConverted());
    1.19 -
    1.20 -        //fail("Implement me!");
    1.21      }
    1.22  
    1.23      /** Join the convertors and show they behave sane.
    1.24       */
    1.25      public void testOnlineConvertorComposition() throws Exception {
    1.26 -        if (Boolean.getBoolean("ignore.failing")) {
    1.27 -            // implement me!
    1.28 -            return;
    1.29 -        }
    1.30 -        
    1.31          Convertor c = Task2Test.merge(
    1.32              createOnlineCZKUSDConvertor(),
    1.33              Task1Test.createSKKtoCZK()