samples/composition/src-test/api/ArithmeticaCompatibilityTest.java
changeset 210 acf2c31e22d4
parent 209 1c999569643b
child 263 7e8e995065c5
     1.1 --- a/samples/composition/src-test/api/ArithmeticaCompatibilityTest.java	Sat Jun 14 10:04:51 2008 +0200
     1.2 +++ b/samples/composition/src-test/api/ArithmeticaCompatibilityTest.java	Sat Jun 14 10:04:53 2008 +0200
     1.3 @@ -66,15 +66,15 @@
     1.4              compare(now, old, seed);
     1.5          
     1.6              assertEquals(
     1.7 -                "Verify amount of sumRange is the same", 
     1.8 +                "Verify amount calls to of sumRange is the same", 
     1.9                  now.countSumRange, old.countSumRange
    1.10              );
    1.11              assertEquals(
    1.12 -                "Verify amount of sumAll is the same", 
    1.13 +                "Verify amount calls to of sumAll is the same", 
    1.14                  now.countSumAll, old.countSumAll
    1.15              );
    1.16              assertEquals(
    1.17 -                "Verify amount of sumTwo is the same", 
    1.18 +                "Verify amount calls to of sumTwo is the same", 
    1.19                  now.countSumTwo, old.countSumTwo
    1.20              );
    1.21          } catch (AssertionFailedError ex) {
    1.22 @@ -99,15 +99,15 @@
    1.23          compare(now, old, 1208120436947L);
    1.24  
    1.25          assertEquals(
    1.26 -            "Verify amount of sumRange is the same", 
    1.27 +            "Verify amount of calls to sumRange is the same", 
    1.28              now.countSumRange, old.countSumRange
    1.29          );
    1.30          assertEquals(
    1.31 -            "Verify amount of sumAll is the same", 
    1.32 +            "Verify amount of calls to sumAll is the same", 
    1.33              now.countSumAll, old.countSumAll
    1.34          );
    1.35          assertEquals(
    1.36 -            "Verify amount of sumTwo is the same", 
    1.37 +            "Verify amount of calls to sumTwo is the same", 
    1.38              now.countSumTwo, old.countSumTwo
    1.39          );
    1.40      }
    1.41 @@ -119,15 +119,15 @@
    1.42          compare(now, old, 1208120628821L);
    1.43  
    1.44          assertEquals(
    1.45 -            "Verify amount of sumRange is the same", 
    1.46 +            "Verify amount of calls to sumRange is the same", 
    1.47              now.countSumRange, old.countSumRange
    1.48          );
    1.49          assertEquals(
    1.50 -            "Verify amount of sumAll is the same", 
    1.51 +            "Verify amount of calls to sumAll is the same", 
    1.52              now.countSumAll, old.countSumAll
    1.53          );
    1.54          assertEquals(
    1.55 -            "Verify amount of sumTwo is the same", 
    1.56 +            "Verify amount of calls to sumTwo is the same", 
    1.57              now.countSumTwo, old.countSumTwo
    1.58          );
    1.59      }