blob: 1cd18958c500bcd08f1d4786192e0bab6b7a8fe1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Louis Rose - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.ewl.engine.test.acceptance;
import org.eclipse.epsilon.ewl.engine.test.acceptance.builtins.EwlCanAccessBuiltinsTests;
import org.eclipse.epsilon.ewl.engine.test.acceptance.trees.TestXmlTreeWizards;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({EwlCanAccessBuiltinsTests.class, TestXmlTreeWizards.class})
public class EwlAcceptanceTestSuite {
}