task3/solution04/test/org/apidesign/apifest08/test/Task3Test.java
changeset 59 c1d43bc1e9c0
parent 55 14e78f48ac2b
     1.1 --- a/task3/solution04/test/org/apidesign/apifest08/test/Task3Test.java	Fri Oct 10 22:05:15 2008 +0200
     1.2 +++ b/task3/solution04/test/org/apidesign/apifest08/test/Task3Test.java	Sat Oct 11 10:49:25 2008 +0200
     1.3 @@ -90,11 +90,6 @@
     1.4      public void testFewQueriesForOnlineConvertor() 
     1.5          throws InvalidConversionException
     1.6      {
     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 @@ -130,11 +125,6 @@
    1.16      public void testOnlineConvertorComposition() throws Exception {
    1.17          BigDecimal amount;
    1.18          
    1.19 -        if (Boolean.getBoolean("ignore.failing")) {
    1.20 -            // implement me!
    1.21 -            return;
    1.22 -        }
    1.23 -        
    1.24          Convertor c = Task2Test.merge(
    1.25              createOnlineCZKUSDConvertor(),
    1.26              Task1Test.createSKKtoCZK()