Searched defs:tests (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/test/java/lang/String/
H A DIsEmpty.java31 private static String [] tests = { "", " ", "a", field in class:IsEmpty
36 for (int i = 0; i < tests.length; i++) {
37 String s = tests[i];
/openjdk7/jdk/test/javax/management/modelmbean/
H A DLoggingExceptionTest.java21 private static final String tests[] = new String[] { field in class:LoggingExceptionTest
36 for (int i = 0; i < tests.length; i++) {
39 String msg = "Instantiate " + tests[i];
/openjdk7/langtools/test/tools/javac/
H A DFlatnameClash2.java33 package tests; package
55 extends tests.T1$Inner1 // ERROR: name not found
H A DT6406771.java23 String[] tests = { field in class:T6406771
/openjdk7/jdk/test/sun/security/util/PropertyExpander/
H A DExpandAndEncode.java38 private static String tests[] = { field in class:ExpandAndEncode
71 for (int i=0; i < tests.length; i++) {
72 String result = PropertyExpander.expand(tests[i], true);
/openjdk7/langtools/test/tools/javac/generics/inference/6359106/
H A DOrig.java24 package tests; package
/openjdk7/jdk/test/javax/management/ObjectName/
H A DComparatorTest.java42 private static final String tests[][] = { field in class:ComparatorTest
175 for (int i = 0; i < tests.length; i++)
176 error += runTest(tests[i][0].charAt(0), tests[i][1], tests[i][2]);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DMiscTests.java41 package j2dbench.tests;
H A DGraphicsTests.java41 package j2dbench.tests;
H A DPixelTests.java41 package j2dbench.tests;
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/PBE/
H A DPKCS12CipherKAT.java173 private final static Test[] tests = { field in class:PKCS12CipherKAT
180 static void runTests(Test[] tests) throws Exception { argument
186 for (int i = 0; i < tests.length; i++) {
187 Test test = tests[i];
190 System.out.println("All tests passed");
196 runTests(tests);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RC2ArcFour/
H A DCipherKAT.java180 private final static Test[] tests = { field in class:CipherKAT
202 static void runTests(Test[] tests) throws Exception { argument
212 for (int i = 0; i < tests.length; i++) {
213 Test test = tests[i];
216 System.out.println("All tests passed");
222 runTests(tests);
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DMacKAT.java171 private final static Test[] tests = { field in class:MacKAT
208 static void runTests(Test[] tests) throws Exception { argument
218 for (int i = 0; i < tests.length; i++) {
219 Test test = tests[i];
222 System.out.println("All tests passed");
228 runTests(tests);
/openjdk7/jdk/test/java/lang/Class/getEnclosingClass/
H A DEnclosingClassTest.java117 static void test(Object tests) { argument
118 for (Field f : tests.getClass().getFields()) {
122 testClass((Class<?>)f.get(tests), annotation, f);
125 tests.getClass().getName() +
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DConnectState.java168 static void tests() throws Exception { method in class:ConnectState
280 tests();
/openjdk7/jdk/test/sun/security/provider/MessageDigest/
H A DDigestKAT.java152 private final static Test[] tests = { field in class:DigestKAT
225 static void runTests(Test[] tests) throws Exception { argument
229 for (int i = 0; i < tests.length; i++) {
230 Test test = tests[i];
233 System.out.println("All tests passed");
239 runTests(tests);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DIIOTests.java41 package j2dbench.tests.iio;
H A DOutputStreamTests.java41 package j2dbench.tests.iio;
60 streamTestRoot = new Group(streamRoot, "tests",
H A DOutputTests.java41 package j2dbench.tests.iio;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextRenderTests.java47 package j2dbench.tests.text;
64 rendertestroot = new Group(renderroot, "tests", "Rendering Tests");
/openjdk7/jdk/test/javax/crypto/spec/RC2ParameterSpec/
H A DRC2AlgorithmParameters.java74 runTests(tests);
77 static void runTests(CipherTest[] tests) throws Exception { argument
78 for (int i = 0; i < tests.length; i++) {
79 CipherTest test = tests[i];
82 System.out.println("All tests passed");
252 private final static CipherTest[] tests = { field in class:RC2AlgorithmParameters
/openjdk7/jdk/test/sun/security/pkcs11/MessageDigest/
H A DDigestKAT.java149 private final static Test[] tests = { field in class:DigestKAT
206 static void runTests(Test[] tests, Provider p) throws Exception { argument
209 for (int i = 0; i < tests.length; i++) {
210 Test test = tests[i];
213 System.out.println("All tests passed");
219 runTests(tests, p);
/openjdk7/langtools/test/tools/javac/6979683/
H A DTestCast6979683_GOOD.java43 System.out.println("Successfully ran "+tests+" tests.");
46 static int tests; field in class:TestCast6979683_GOOD
51 ++tests;
/openjdk7/jdk/test/javax/management/query/
H A DQueryMatchTest.java435 private static Object[][] tests = { field in class:QueryMatchTest
505 for (int i = 0; i < tests.length; i++) {
506 error += query(mbs, (String) tests[i][0], (String[][]) tests[i][1]);
/openjdk7/jdk/test/java/net/URL/
H A DTest.java25 * @summary Unit test for java.net.URL (Based on the URI tests that is authored by Mark Reinhold)
601 static void tests() throws IOException, MalformedURLException { method in class:Test
612 out.println(" java Test -- Runs all tests in this file");
622 tests();

Completed in 134 milliseconds

12