Trying to find cause of Gump (and other) failures
Ensure that registry starts out empty git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1297125 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c4baca0e2
commit
42e974c43c
|
@ -170,6 +170,7 @@ public class ToStringBuilderTest {
|
|||
|
||||
@Test
|
||||
public void testReflectionIntArray() {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
int[] array = new int[] { 1, 2, -3, 4 };
|
||||
String baseStr = this.toBaseString(array);
|
||||
assertEquals(baseStr + "[{1,2,-3,4}]", ToStringBuilder.reflectionToString(array));
|
||||
|
@ -180,6 +181,7 @@ public class ToStringBuilderTest {
|
|||
|
||||
@Test
|
||||
public void testReflectionShortArray() {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
short[] array = new short[] { 1, 2, -3, 4 };
|
||||
String baseStr = this.toBaseString(array);
|
||||
assertEquals(baseStr + "[{1,2,-3,4}]", ToStringBuilder.reflectionToString(array));
|
||||
|
@ -200,6 +202,7 @@ public class ToStringBuilderTest {
|
|||
|
||||
@Test
|
||||
public void testReflectionCharArray() {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
char[] array = new char[] { 'A', '2', '_', 'D' };
|
||||
String baseStr = this.toBaseString(array);
|
||||
assertEquals(baseStr + "[{A,2,_,D}]", ToStringBuilder.reflectionToString(array));
|
||||
|
@ -283,6 +286,7 @@ public class ToStringBuilderTest {
|
|||
|
||||
@Test
|
||||
public void testReflectionByteArrayArray() {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
byte[][] array = new byte[][] { { 1, 2 }, null, { 5 } };
|
||||
String baseStr = this.toBaseString(array);
|
||||
assertEquals(baseStr + "[{{1,2},<null>,{5}}]", ToStringBuilder.reflectionToString(array));
|
||||
|
@ -293,6 +297,7 @@ public class ToStringBuilderTest {
|
|||
|
||||
@Test
|
||||
public void testReflectionCharArrayArray() {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
char[][] array = new char[][] { { 'A', 'B' }, null, { 'p' } };
|
||||
String baseStr = this.toBaseString(array);
|
||||
assertEquals(baseStr + "[{{A,B},<null>,{p}}]", ToStringBuilder.reflectionToString(array));
|
||||
|
@ -547,6 +552,7 @@ public class ToStringBuilderTest {
|
|||
*/
|
||||
@Test
|
||||
public void testSimpleReflectionObjectCycle() throws Exception {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
SimpleReflectionTestFixture simple = new SimpleReflectionTestFixture();
|
||||
simple.o = simple;
|
||||
assertEquals(this.toBaseString(simple) + "[o=" + this.toBaseString(simple) + "]", simple.toString());
|
||||
|
@ -560,6 +566,7 @@ public class ToStringBuilderTest {
|
|||
*/
|
||||
@Test
|
||||
public void testSelfInstanceVarReflectionObjectCycle() throws Exception {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
SelfInstanceVarReflectionTestFixture test = new SelfInstanceVarReflectionTestFixture();
|
||||
assertEquals(this.toBaseString(test) + "[typeIsSelf=" + this.toBaseString(test) + "]", test.toString());
|
||||
this.validateNullToStringStyleRegistry();
|
||||
|
@ -586,6 +593,7 @@ public class ToStringBuilderTest {
|
|||
*/
|
||||
@Test
|
||||
public void testReflectionObjectCycle() throws Exception {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
ReflectionTestCycleA a = new ReflectionTestCycleA();
|
||||
ReflectionTestCycleB b = new ReflectionTestCycleB();
|
||||
a.b = b;
|
||||
|
@ -593,7 +601,7 @@ public class ToStringBuilderTest {
|
|||
assertEquals(
|
||||
this.toBaseString(a) + "[b=" + this.toBaseString(b) + "[a=" + this.toBaseString(a) + "]]",
|
||||
a.toString());
|
||||
this.validateNullToStringStyleRegistry();
|
||||
validateNullToStringStyleRegistry();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -918,6 +926,7 @@ public class ToStringBuilderTest {
|
|||
|
||||
@Test
|
||||
public void testObjectCycle() {
|
||||
validateNullToStringStyleRegistry(); // Ensure registry starts out empty
|
||||
ObjectCycle a = new ObjectCycle();
|
||||
ObjectCycle b = new ObjectCycle();
|
||||
a.obj = b;
|
||||
|
|
Loading…
Reference in New Issue