blob: 6abe7eeebabba75a55ed90450dc1026aa6b4d66e [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2008 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/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.emc.csv.test;
import org.eclipse.epsilon.emc.csv.CsvModelTests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
@RunWith(Suite.class)
@SuiteClasses({CsvModelTests.class})
public class CsvModelTestSuite {
public static Test suite() {
return new JUnit4TestAdapter(CsvModelTestSuite.class);
}
}