blob: 20dc0d80a9c20784034f248c296a7709c610746e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.emc.bibtex;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({BibtexModelTests.class, BibtextUnparserTests.class})
public class BibtexModelTestSuite {
public static Test suite() {
return new JUnit4TestAdapter(BibtexModelTestSuite.class);
}
}