blob: 42409deedaeb76f52c9ab5a2b289e32675eec049 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 empolis GmbH and brox IT Solutions GmbH.
* 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:
* Juergen Schumacher (empolis GmbH) - initial API and implementation
*******************************************************************************/
package org.eclipse.smila.processing.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Suite combining all datamodel tests.
*
* @author jschumacher
*
*/
public final class AllTests {
/**
* utility class, do not create instances.
*/
private AllTests() {
}
/**
* @return suite for all datamodel tests
*/
public static Test suite() {
final TestSuite suite = new TestSuite("Test for org.eclipse.smila.processing");
// $JUnit-BEGIN$
suite.addTestSuite(TestPipeletTracker.class);
suite.addTestSuite(TestParameterAccessor.class);
// $JUnit-END$
return suite;
}
}