blob: 8364007c6f5b7c4852a1c82839222afd8b2f1bc9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Borland Software Corporation
*
* 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.tests.qvt.oml.emf;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllEmfTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for org.eclipse.m2m.tests.qvt.oml.emf"); //$NON-NLS-1$
//$JUnit-BEGIN$
suite.addTestSuite(TestEmfUtil.class);
//$JUnit-END$
return suite;
}
}