< prev index next >

test/jdk/java/nio/charset/spi/CharsetProviderBasicTest.java

Print this page
rev 51881 : [mq]: 8211171


   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
  26  * @bug 4429040 4591027 4814743
  27  * @summary Unit test for charset providers
  28  * @library /test/lib
  29  *          /lib/testlibrary
  30  * @build jdk.test.lib.Utils
  31  *        jdk.test.lib.Asserts
  32  *        jdk.test.lib.JDKToolFinder
  33  *        jdk.test.lib.JDKToolLauncher
  34  *        jdk.test.lib.Platform
  35  *        jdk.test.lib.process.*
  36  *        JarUtils
  37  *        FooCharset FooProvider CharsetTest
  38  * @run driver SetupJar
  39  * @run testng CharsetProviderBasicTest
  40  */
  41 
  42 import java.io.File;
  43 import java.util.ArrayList;
  44 import java.util.Iterator;
  45 import java.util.List;
  46 import java.util.stream.Stream;
  47 
  48 import jdk.test.lib.JDKToolFinder;
  49 import jdk.test.lib.Utils;




   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
  26  * @bug 4429040 4591027 4814743
  27  * @summary Unit test for charset providers
  28  * @library /test/lib

  29  * @build jdk.test.lib.Utils
  30  *        jdk.test.lib.Asserts
  31  *        jdk.test.lib.JDKToolFinder
  32  *        jdk.test.lib.JDKToolLauncher
  33  *        jdk.test.lib.Platform
  34  *        jdk.test.lib.process.*
  35  *        JarUtils
  36  *        FooCharset FooProvider CharsetTest
  37  * @run driver SetupJar
  38  * @run testng CharsetProviderBasicTest
  39  */
  40 
  41 import java.io.File;
  42 import java.util.ArrayList;
  43 import java.util.Iterator;
  44 import java.util.List;
  45 import java.util.stream.Stream;
  46 
  47 import jdk.test.lib.JDKToolFinder;
  48 import jdk.test.lib.Utils;


< prev index next >