blob: 119534c23afa6f6362264800eb1b00f5cbc91af4 [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;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.xwt.tests.base.HelloWorldSnippetTest;
import org.eclipse.xwt.tests.controls.ButtonVisibleSnippetTest;
public class XwtSnippetsTestSuite extends TestSuite {
public static final Test suite() {
return new XwtSnippetsTestSuite();
}
public XwtSnippetsTestSuite() {
addBaseTests();
addControlsTests();
}
private void addControlsTests() {
addTest(new TestSuite(ButtonVisibleSnippetTest.class));
}
protected void addBaseTests() {
addTest(new TestSuite(HelloWorldSnippetTest.class));
}
}