141142143144145146147148149150151
/** @throws Exception */ @Test public void construct_e2() throws Exception { check_e2( new E2(), null, null, null, null ); check_e2( new E2( null, null, null, null ), null, null, null, null ); check_e2( new E2( 1, 2, 3, 4 ), 1, 2, 3, 4 ); }
263264265266267268269270271272273
"org.apache.etch.tests.Inheritance$E1: a=1; b=2", new E1( 1, 2 ).toString() ); assertEquals( "org.apache.etch.tests.Inheritance$E2: a=1; b=2; c=3; d=4", new E2( 1, 2, 3, 4 ).toString() ); assertEquals( "org.apache.etch.tests.Inheritance$E3: a=1; b=2; c=3; d=4; e=5; f=6", new E3( 1, 2, 3, 4, 5, 6 ).toString() ); }