/* * This file is part or JMathLib * * Check it out at http://www.jmathlib.de * * Author: Stefan Mueller (stefan@held-mueller.de) * (c) 2007, 2008, 2009 */ package jmathlibtests.toolbox.funfun; import jmathlib.tools.junit.framework.*; /** * TestSuite that runs all the tests * */ public class AllTests { public static void main (String[] args) { jmathlib.tools.junit.textui.TestRunner.run (suite()); } public static Test suite ( ) { TestSuite suite= new TestSuite("function functions"); /* include subdirectories here */ // none /* include tests in this directory here */ suite.addTest(jmathlibtests.toolbox.funfun.testFeval.suite()); return suite; } }