OLD | NEW |
1 /******************************************************************** | 1 /******************************************************************** |
2 * COPYRIGHT: | 2 * COPYRIGHT: |
3 * Copyright (c) 1997-2015, International Business Machines Corporation and | 3 * Copyright (c) 1997-2015, International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 ********************************************************************/ | 5 ********************************************************************/ |
6 | 6 |
7 | 7 |
8 /** | 8 /** |
9 * IntlTestUtilities is the medium level test class for everything in the direct
ory "utility". | 9 * IntlTestUtilities is the medium level test class for everything in the direct
ory "utility". |
10 */ | 10 */ |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 callTest(*test, par); | 117 callTest(*test, par); |
118 } | 118 } |
119 break; | 119 break; |
120 case 22: | 120 case 22: |
121 name = "QuantityFormatterTest"; | 121 name = "QuantityFormatterTest"; |
122 if (exec) { | 122 if (exec) { |
123 logln("TestSuite QuantityFormatterTest---"); logln(); | 123 logln("TestSuite QuantityFormatterTest---"); logln(); |
124 LocalPointer<IntlTest> test(createQuantityFormatterTest()); | 124 LocalPointer<IntlTest> test(createQuantityFormatterTest()); |
125 callTest(*test, par); | 125 callTest(*test, par); |
126 } | 126 } |
| 127 break; |
127 case 23: | 128 case 23: |
128 name = "PluralMapTest"; | 129 name = "PluralMapTest"; |
129 if (exec) { | 130 if (exec) { |
130 logln("TestSuite PluralMapTest---"); logln(); | 131 logln("TestSuite PluralMapTest---"); logln(); |
131 LocalPointer<IntlTest> test(createPluralMapTest()); | 132 LocalPointer<IntlTest> test(createPluralMapTest()); |
132 callTest(*test, par); | 133 callTest(*test, par); |
133 } | 134 } |
134 break; | 135 break; |
135 default: name = ""; break; //needed to end loop | 136 default: name = ""; break; //needed to end loop |
136 } | 137 } |
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 logln("remove THING1 -Value now: %d\n", flags.getAll()); | 799 logln("remove THING1 -Value now: %d\n", flags.getAll()); |
799 logln("get(thing1)=%d, get(thing2)=%d, get(thing3)=%d\n", flags.get
(THING1), flags.get(THING2), flags.get(THING3)); | 800 logln("get(thing1)=%d, get(thing2)=%d, get(thing3)=%d\n", flags.get
(THING1), flags.get(THING2), flags.get(THING3)); |
800 | 801 |
801 flags.clear(); | 802 flags.clear(); |
802 logln("clear -Value now: %d\n", flags.getAll()); | 803 logln("clear -Value now: %d\n", flags.getAll()); |
803 logln("get(thing1)=%d, get(thing2)=%d, get(thing3)=%d\n", flags.get
(THING1), flags.get(THING2), flags.get(THING3)); | 804 logln("get(thing1)=%d, get(thing2)=%d, get(thing3)=%d\n", flags.get
(THING1), flags.get(THING2), flags.get(THING3)); |
804 TEST_ASSERT_TRUE(flags.get(THING1) == FALSE); | 805 TEST_ASSERT_TRUE(flags.get(THING1) == FALSE); |
805 TEST_ASSERT_TRUE(flags.get(THING2) == FALSE); | 806 TEST_ASSERT_TRUE(flags.get(THING2) == FALSE); |
806 TEST_ASSERT_TRUE(flags.get(THING3) == FALSE); | 807 TEST_ASSERT_TRUE(flags.get(THING3) == FALSE); |
807 } | 808 } |
OLD | NEW |