blob: 4f97dd201c06d4e2aee698cda690a46c914c0640 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002,2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
* E.D.Willink - Bug 298634
*******************************************************************************/
package org.eclipse.qvtd.atl.tests;
import java.util.Arrays;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* Tests for the ATL support.
*/
public class AllATLTests extends TestCase
{
public AllATLTests() {
super("");
}
public static Test suite() {
TestSuite result = new TestSuite("All ATL Tests");
result.addTestSuite(ATLExampleTests.class);
return result;
}
public Object run(Object args)
throws Exception {
TestRunner.run(suite());
return Arrays
.asList(new String[] {"Please see raw test suite output for details."});
}
}