/** @throws Exception */
@Test
public void construct_e3() throws Exception
{
check_e3( new E3(), null, null, null, null, null, null );
check_e3( new E3( null, null, null, null, null, null ),
null, null, null, null, null, null );
check_e3( new E3( 1, 2, 3, 4, 5, 6 ), 1, 2, 3, 4, 5, 6 );
}