test/java/util/EnumSet/AllOf.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     4946090
  27  * @summary AllOf static factory is broken in Regular and Jumbo enum set
  28  * @author  Josh Bloch
  29  *
  30  * @compile -source 1.5 AllOf.java
  31  * @run main AllOf
  32  */
  33 
  34 import java.util.*;
  35 
  36 public class AllOf {
  37     public static void main(String[] args) throws Exception {
  38         test(Test0.class, 0);
  39         test(Test33.class, 33);
  40         test(Test127.class, 127);
  41         test(Test128.class, 128);
  42     }
  43 
  44     static <T extends Enum<T>> void test(Class<T> enumClass,
  45                                                 int expected) {
  46         EnumSet<T> set = EnumSet.allOf(enumClass);
  47         if (set.size() != expected)
  48             throw new RuntimeException(set.size() +" != " + expected);
  49         set.toString();
  50     }
  51 




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     4946090
  27  * @summary AllOf static factory is broken in Regular and Jumbo enum set
  28  * @author  Josh Bloch



  29  */
  30 
  31 import java.util.*;
  32 
  33 public class AllOf {
  34     public static void main(String[] args) throws Exception {
  35         test(Test0.class, 0);
  36         test(Test33.class, 33);
  37         test(Test127.class, 127);
  38         test(Test128.class, 128);
  39     }
  40 
  41     static <T extends Enum<T>> void test(Class<T> enumClass,
  42                                                 int expected) {
  43         EnumSet<T> set = EnumSet.allOf(enumClass);
  44         if (set.size() != expected)
  45             throw new RuntimeException(set.size() +" != " + expected);
  46         set.toString();
  47     }
  48