< prev index next >

test/java/util/Base64/TestBase64.java

Print this page
rev 17324 : 8181759: add explicit @build actions for jdk.test.lib classes in all :tier1 tests
Reviewed-by: duke


   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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test 4235519 8004212 8005394 8007298 8006295 8006315 8006530 8007379 8008925
  26  *       8014217 8025003 8026330 8028397 8129544 8165243
  27  * @summary tests java.util.Base64
  28  * @library /test/lib

  29  * @run main TestBase64
  30  * @key randomness
  31  */
  32 
  33 import java.io.ByteArrayInputStream;
  34 import java.io.ByteArrayOutputStream;
  35 import java.io.InputStream;
  36 import java.io.IOException;
  37 import java.io.OutputStream;
  38 import java.nio.ByteBuffer;
  39 import java.util.Arrays;
  40 import java.util.ArrayList;
  41 import java.util.Base64;
  42 import java.util.List;
  43 import java.util.Random;
  44 
  45 import jdk.test.lib.RandomFactory;
  46 
  47 public class TestBase64 {
  48 




   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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test 4235519 8004212 8005394 8007298 8006295 8006315 8006530 8007379 8008925
  26  *       8014217 8025003 8026330 8028397 8129544 8165243
  27  * @summary tests java.util.Base64
  28  * @library /test/lib
  29  * @build jdk.test.lib.RandomFactory
  30  * @run main TestBase64
  31  * @key randomness
  32  */
  33 
  34 import java.io.ByteArrayInputStream;
  35 import java.io.ByteArrayOutputStream;
  36 import java.io.InputStream;
  37 import java.io.IOException;
  38 import java.io.OutputStream;
  39 import java.nio.ByteBuffer;
  40 import java.util.Arrays;
  41 import java.util.ArrayList;
  42 import java.util.Base64;
  43 import java.util.List;
  44 import java.util.Random;
  45 
  46 import jdk.test.lib.RandomFactory;
  47 
  48 public class TestBase64 {
  49 


< prev index next >