blob: 586d261847631bda188f4f9cc9948ee2ecf3f8b5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Eclipse XWT Team
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Erdal Karaca - initial API and implementation
*******************************************************************************/
package org.eclipse.xwt.tests.base;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotText;
import org.eclipse.xwt.snippets.XWTSnippet;
import org.eclipse.xwt.snippets.base.HelloWorldSnippet;
import org.eclipse.xwt.tests.AbstractSnippetTest;
import org.junit.Test;
public class HelloWorldSnippetTest extends AbstractSnippetTest {
@Override
protected XWTSnippet doGetSnippet() {
return new HelloWorldSnippet();
}
@Test
public void testAll() {
Composite rootComposite = getRoot(Composite.class);
SWTBot bot = new SWTBot(rootComposite);
SWTBotText text = bot.text(0);
assertTrue(text.backgroundColor() != null
&& text.backgroundColor().equals(
rootComposite.getDisplay().getSystemColor(
SWT.COLOR_BLUE)));
}
}