You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestVarargs.java 262B

123456789101112
  1. import java.util.Arrays;
  2. //import junit.framework.TestCase;
  3. /**
  4. * @author Pekka Enberg
  5. */
  6. public class TestVarargs /*extends TestCase */{
  7. public void testVarargs() throws Exception {
  8. Arrays.asList(String.class, Long.class, Integer.class);
  9. }
  10. }