shell.setSize( 100, 100 );
shell.setLayout( new FillLayout() );
ScrollingComposite composite = new ScrollingComposite( shell, SWT.V_SCROLL );
composite.setLayout( new RowLayout( SWT.VERTICAL ) );
createChildren( composite );
Control child = composite.getChildren()[ 80 ];
shell.layout( true, true );
boolean revealed = composite.isRevealed( child );
assertFalse( revealed );