Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 277089 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/swt/internal/widgets/tableitemkit/TableItemLCA_Test.java (+13 lines)
Lines 351-354 Link Here
351
    String result = Fixture.getAllMarkup();
351
    String result = Fixture.getAllMarkup();
352
    assertTrue( result.indexOf( expected ) != -1 );
352
    assertTrue( result.indexOf( expected ) != -1 );
353
  }
353
  }
354
  
355
356
  public void testDynamicColumns() throws Exception {
357
    Display display = new Display();
358
    Shell shell = new Shell( display );
359
    Table table = new Table( shell, SWT.NONE );
360
    new TableColumn( table, SWT.NONE );
361
    TableItem item = new TableItem( table, SWT.NONE );
362
    item.setBackground( 0, display.getSystemColor( SWT.COLOR_BLACK ) );
363
    new TableColumn( table, SWT.NONE );
364
    RWTFixture.markInitialized( display );
365
    RWTFixture.preserveWidgets();
366
  }
354
}
367
}

Return to bug 277089