blob: d475c1bc0e80fbc6a46f9c7b27dd42e58a9b63b9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.stem.tests.automaticexperiment;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* Test suite for Automatic Experiment tests
*
*/
public class AutomaticExperimentAllTests extends TestSuite
{
public static void main(String[] args) {
TestRunner.run(suite());
}
public static Test suite() {
TestSuite suite = new AutomaticExperimentAllTests("Automatic Experiment Tests");
suite.addTestSuite(AutomaticExperimentTest.class);
suite.addTestSuite(NelderMeadAlgorithmTest.class);
return suite;
}
public AutomaticExperimentAllTests(String name) {
super(name);
}
}