renamed AbstractStepInterpolatorTest into StepInterpolatorAbstractTest
to match existing maven exclusion patterns git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@673772 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c3ae1b97a
commit
31b3876063
|
@ -32,7 +32,7 @@ import org.apache.commons.math.ode.DerivativeException;
|
||||||
import org.apache.commons.math.ode.IntegratorException;
|
import org.apache.commons.math.ode.IntegratorException;
|
||||||
|
|
||||||
public class ClassicalRungeKuttaStepInterpolatorTest
|
public class ClassicalRungeKuttaStepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public ClassicalRungeKuttaStepInterpolatorTest(String name) {
|
public ClassicalRungeKuttaStepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -33,7 +33,7 @@ import org.apache.commons.math.ode.sampling.StepHandler;
|
||||||
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
||||||
|
|
||||||
public class DormandPrince54StepInterpolatorTest
|
public class DormandPrince54StepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public DormandPrince54StepInterpolatorTest(String name) {
|
public DormandPrince54StepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -33,7 +33,7 @@ import org.apache.commons.math.ode.sampling.StepHandler;
|
||||||
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
||||||
|
|
||||||
public class DormandPrince853StepInterpolatorTest
|
public class DormandPrince853StepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public DormandPrince853StepInterpolatorTest(String name) {
|
public DormandPrince853StepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -33,7 +33,7 @@ import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
|
||||||
import org.apache.commons.math.ode.IntegratorException;
|
import org.apache.commons.math.ode.IntegratorException;
|
||||||
|
|
||||||
public class EulerStepInterpolatorTest
|
public class EulerStepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public EulerStepInterpolatorTest(String name) {
|
public EulerStepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -31,7 +31,7 @@ import org.apache.commons.math.ode.IntegratorException;
|
||||||
import org.apache.commons.math.ode.nonstiff.GillIntegrator;
|
import org.apache.commons.math.ode.nonstiff.GillIntegrator;
|
||||||
|
|
||||||
public class GillStepInterpolatorTest
|
public class GillStepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public GillStepInterpolatorTest(String name) {
|
public GillStepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -33,7 +33,7 @@ import org.apache.commons.math.ode.sampling.StepHandler;
|
||||||
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
||||||
|
|
||||||
public class GraggBulirschStoerStepInterpolatorTest
|
public class GraggBulirschStoerStepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public GraggBulirschStoerStepInterpolatorTest(String name) {
|
public GraggBulirschStoerStepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -33,7 +33,7 @@ import org.apache.commons.math.ode.sampling.StepHandler;
|
||||||
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
import org.apache.commons.math.ode.sampling.StepInterpolator;
|
||||||
|
|
||||||
public class HighamHall54StepInterpolatorTest
|
public class HighamHall54StepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public HighamHall54StepInterpolatorTest(String name) {
|
public HighamHall54StepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -32,7 +32,7 @@ import org.apache.commons.math.ode.DerivativeException;
|
||||||
import org.apache.commons.math.ode.IntegratorException;
|
import org.apache.commons.math.ode.IntegratorException;
|
||||||
|
|
||||||
public class MidpointStepInterpolatorTest
|
public class MidpointStepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public MidpointStepInterpolatorTest(String name) {
|
public MidpointStepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
|
@ -24,9 +24,9 @@ import org.apache.commons.math.ode.sampling.StepInterpolator;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
public class AbstractStepInterpolatorTest extends TestCase {
|
public class StepInterpolatorAbstractTest extends TestCase {
|
||||||
|
|
||||||
protected AbstractStepInterpolatorTest(String name) {
|
protected StepInterpolatorAbstractTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ import org.apache.commons.math.ode.DerivativeException;
|
||||||
import org.apache.commons.math.ode.IntegratorException;
|
import org.apache.commons.math.ode.IntegratorException;
|
||||||
|
|
||||||
public class ThreeEighthesStepInterpolatorTest
|
public class ThreeEighthesStepInterpolatorTest
|
||||||
extends AbstractStepInterpolatorTest {
|
extends StepInterpolatorAbstractTest {
|
||||||
|
|
||||||
public ThreeEighthesStepInterpolatorTest(String name) {
|
public ThreeEighthesStepInterpolatorTest(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
|
|
Loading…
Reference in New Issue