jdk/test/java/lang/reflect/Method/GenericStringTest.java
author darcy
Tue, 26 Jul 2016 12:56:26 -0700
changeset 39825 6441823cea46
parent 39731 7a4bc90065bd
permissions -rw-r--r--
8162539: Test fails because it expects a blank between method signature and throws exception Reviewed-by: coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
39731
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
     2
 * Copyright (c) 2004, 2016, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
39825
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    26
 * @bug 5033583 6316717 6470106 8004979 8161500 8162539
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Check toGenericString() and toString() methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Joseph D. Darcy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.lang.annotation.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
public class GenericStringTest {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    public static void main(String argv[]) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
        int failures = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
39731
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
    39
        for(Class<?> clazz: List.of(TestClass1.class, TestClass2.class,
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
    40
                                    Roebling.class, TestInterface1.class))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
            for(Method method: clazz.getDeclaredMethods()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
                ExpectedGenericString egs = method.getAnnotation(ExpectedGenericString.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
                if (egs != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
                    String actual = method.toGenericString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
                    System.out.println(actual);
19387
1054a32f3f02 8015780: java/lang/reflect/Method/GenericStringTest.java failing
vromero
parents: 16729
diff changeset
    46
                    if (method.isBridge()) {
39825
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    47
                        failures += checkForFailure(egs.bridgeValue(), actual);
19387
1054a32f3f02 8015780: java/lang/reflect/Method/GenericStringTest.java failing
vromero
parents: 16729
diff changeset
    48
                    } else {
39825
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    49
                        failures += checkForFailure(egs.value(), actual);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                if (method.isAnnotationPresent(ExpectedString.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                    ExpectedString es = method.getAnnotation(ExpectedString.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
                    String actual = method.toString();
39825
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    56
                    failures += checkForFailure(es.value(), actual);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        // Bridge Test; no "volatile" methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        for(Method method: Roebling.class.getDeclaredMethods()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            String s1 = method.toGenericString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            String s2 = method.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            System.out.println("Generic: " + s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            System.out.println("Regular: " + s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            if (s1.indexOf("volatile") != -1 ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                s2.indexOf("volatile") != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                failures++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                System.err.println("ERROR: Bad string; unexpected  ``volatile''");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        if (failures > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            System.err.println("Test failed.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            throw new RuntimeException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    }
39825
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    79
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    80
    private static int checkForFailure(String expected, String actual) {
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    81
        if (!expected.equals(actual)) {
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    82
            System.err.printf("ERROR: Expected ''%s'';%ngot             ''%s''.\n",
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    83
                              expected, actual);
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    84
            return 1;
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    85
        } else
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    86
            return 0;
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
    87
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
class TestClass1 {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    @ExpectedGenericString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
   "void TestClass1.method1(int,double)")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    void method1(int x, double y) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    @ExpectedGenericString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
   "private static java.lang.String TestClass1.method2(int,int)")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    private static String method2(int x, int param2) {return null;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    @ExpectedGenericString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
   "static void TestClass1.method3() throws java.lang.RuntimeException")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    static void method3() throws RuntimeException {return;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    @ExpectedGenericString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
   "protected <S,T> S TestClass1.method4(S,T) throws java.lang.Exception")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    protected <S, T> S method4(S s, T t) throws Exception {return null;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
class TestClass2<E, F extends Exception> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    @ExpectedGenericString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
   "public <T> T TestClass2.method1(E,T)")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public <T> T method1(E e, T t) {return null;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    @ExpectedGenericString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
   "public void TestClass2.method2() throws F")
39825
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
   115
    @ExpectedString(
6441823cea46 8162539: Test fails because it expects a blank between method signature and throws exception
darcy
parents: 39731
diff changeset
   116
   "public void TestClass2.method2() throws java.lang.Exception")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    public void method2() throws F {return;}
39731
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   118
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   119
    @ExpectedGenericString(
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   120
   "public E[] TestClass2.method3()")
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   121
    public E[] method3() {return null;}
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   122
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   123
    @ExpectedGenericString(
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   124
   "public E[][] TestClass2.method4()")
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   125
    public E[][] method4() {return null;}
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   126
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   127
    @ExpectedGenericString(
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   128
   "public java.util.List<E[]> TestClass2.method5()")
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   129
    public List<E[]> method5() {return null;}
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   130
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   131
    @ExpectedGenericString(
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   132
   "public java.util.List<?> TestClass2.method6()")
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   133
    public List<?> method6() {return null;}
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   134
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   135
    @ExpectedGenericString(
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   136
   "public java.util.List<?>[] TestClass2.method7()")
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   137
    public List<?>[] method7() {return null;}
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   138
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   139
    @ExpectedGenericString(
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   140
   "public <K,V> java.util.Map<K, V> TestClass2.method8()")
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 19387
diff changeset
   141
    public <K, V> Map<K, V> method8() {return null;}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
class Roebling implements Comparable<Roebling> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    @ExpectedGenericString(
19387
1054a32f3f02 8015780: java/lang/reflect/Method/GenericStringTest.java failing
vromero
parents: 16729
diff changeset
   146
    value="public int Roebling.compareTo(Roebling)",
1054a32f3f02 8015780: java/lang/reflect/Method/GenericStringTest.java failing
vromero
parents: 16729
diff changeset
   147
    bridgeValue="public int Roebling.compareTo(java.lang.Object)")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    public int compareTo(Roebling r) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    // Not a transient method, (transient var-arg overlap)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    @ExpectedGenericString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
   "void Roebling.varArg(java.lang.Object...)")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    @ExpectedString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
   "void Roebling.varArg(java.lang.Object[])")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    void varArg(Object ... arg) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
16729
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   160
interface TestInterface1 {
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   161
    @ExpectedGenericString(
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   162
   "public default void TestInterface1.foo()")
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   163
    @ExpectedString(
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   164
   "public default void TestInterface1.foo()")
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   165
    public default void foo(){;}
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   166
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   167
    @ExpectedString(
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   168
   "public default java.lang.Object TestInterface1.bar()")
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   169
    @ExpectedGenericString(
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   170
   "public default <A> A TestInterface1.bar()")
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   171
    default <A> A bar(){return null;}
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   172
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   173
    @ExpectedString(
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   174
   "public default strictfp double TestInterface1.quux()")
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   175
    @ExpectedGenericString(
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   176
    "public default strictfp double TestInterface1.quux()")
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   177
    strictfp default double quux(){return 1.0;}
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   178
}
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 5506
diff changeset
   179
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
@Retention(RetentionPolicy.RUNTIME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
@interface ExpectedGenericString {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    String value();
19387
1054a32f3f02 8015780: java/lang/reflect/Method/GenericStringTest.java failing
vromero
parents: 16729
diff changeset
   183
    String bridgeValue() default "";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
@Retention(RetentionPolicy.RUNTIME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
@interface ExpectedString {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    String value();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
}
19387
1054a32f3f02 8015780: java/lang/reflect/Method/GenericStringTest.java failing
vromero
parents: 16729
diff changeset
   190