/******************************************************************************* * Copyright (c) 2009, 2015 EclipseSource and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1. * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * EclipseSource - initial API and implementation ******************************************************************************/ package org.eclipse.rap.rwt.internal.lifecycle; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import org.eclipse.rap.rwt.internal.theme.ThemeAdapter; import org.eclipse.rap.rwt.testfixture.internal.Fixture; import org.eclipse.swt.SWT; import org.eclipse.swt.internal.widgets.controlkit.ControlThemeAdapterImpl; import org.eclipse.swt.internal.widgets.shellkit.ShellThemeAdapter; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.junit.After; import org.junit.Before; import org.junit.Test; public class ThemeAdapter_Test { @Before public void setUp() { Fixture.setUp(); Fixture.fakeResponseWriter(); } @After public void tearDown() { Fixture.tearDown(); } @Test public void testAdapterForShell() { Display display = new Display(); Composite shell = new Shell( display, SWT.NONE ); Object adapter = shell.getAdapter( ThemeAdapter.class ); assertNotNull( adapter ); assertTrue( adapter instanceof ShellThemeAdapter ); } @Test public void testAdapterForComposite() { Display display = new Display(); Composite shell = new Shell( display, SWT.NONE ); Composite composite = new Composite( shell, SWT.NONE ); Object adapter = composite.getAdapter( ThemeAdapter.class ); assertNotNull( adapter ); assertTrue( adapter instanceof ControlThemeAdapterImpl ); } @Test public void testAdapterForCustomWidget() { Display display = new Display(); Composite shell = new Shell( display, SWT.NONE ); CustomWidget customWidget = new CustomWidget( shell, SWT.NONE ); Object adapter = customWidget.getAdapter( ThemeAdapter.class ); assertNotNull( adapter ); assertTrue( adapter instanceof ControlThemeAdapterImpl ); } static class CustomWidget extends Composite { private static final long serialVersionUID = 1L; public CustomWidget( Composite parent, int style ) { super( parent, style ); } } }