package org.openpixi.pixi.physics.solver; import junit.framework.Test; import junit.framework.TestSuite; /** * Unit test for Euler. */ public class EulerTest extends SolverTest { /** * Create the test case * * @param testName * name of the test case */ public EulerTest(String testName) { super(testName); solver = new Euler(); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite(EulerTest.class); } }