Merge branch 'LANG-1337'
This commit is contained in:
commit
21bab1d3a0
|
@ -46,6 +46,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<body>
|
||||
|
||||
<release version="3.6" date="2017-MM-DD" description="TBD">
|
||||
<action issue="LANG-1337" type="fix" dev="kinow">Fix test failures in IBM JDK 8 for ToStringBuilderTest</action>
|
||||
<action issue="LANG-1304" type="add" dev="pschumacher" due-to="Andy Klimczak">Add method in StringUtils to determine if string contains both mixed cased characters</action>
|
||||
<action issue="LANG-1334" type="update" dev="djones">Deprecate CharEncoding in favour of java.nio.charset.StandardCharsets</action>
|
||||
<action issue="LANG-1319" type="fix" dev="djones">MultilineRecursiveToStringStyle StackOverflowError when object is an array</action>
|
||||
|
|
|
@ -36,6 +36,8 @@ import org.junit.Test;
|
|||
*/
|
||||
public class ToStringBuilderTest {
|
||||
|
||||
// See LANG-1337 for more.
|
||||
private static final int ARRAYLIST_INITIAL_CAPACITY = 10;
|
||||
private final Integer base = Integer.valueOf(5);
|
||||
private final String baseStr = base.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(base));
|
||||
|
||||
|
@ -316,7 +318,8 @@ public class ToStringBuilderTest {
|
|||
// representation different for IBM JDK 1.6.0, LANG-727
|
||||
assumeFalse("IBM Corporation".equals(SystemUtils.JAVA_VENDOR) && "1.6".equals(SystemUtils.JAVA_SPECIFICATION_VERSION));
|
||||
assumeFalse("Oracle Corporation".equals(SystemUtils.JAVA_VENDOR) && "1.6".compareTo(SystemUtils.JAVA_SPECIFICATION_VERSION) < 0);
|
||||
final List<Object> list = new ArrayList<>();
|
||||
// LANG-1337 without this, the generated string can differ depending on the JVM version/vendor
|
||||
final List<Object> list = new ArrayList<>(ARRAYLIST_INITIAL_CAPACITY);
|
||||
final String baseString = this.toBaseString(list);
|
||||
final String expectedWithTransients = baseString + "[elementData={<null>,<null>,<null>,<null>,<null>,<null>,<null>,<null>,<null>,<null>},size=0,modCount=0]";
|
||||
final String toStringWithTransients = ToStringBuilder.reflectionToString(list, null, true);
|
||||
|
|
Loading…
Reference in New Issue