MATH-599
Name change to avoid test failure on the automated build system ("gump"). git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1139837 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
57e2712f50
commit
d803dbac0e
|
@ -32,7 +32,7 @@ import org.junit.Test;
|
|||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public abstract class BaseSecantSolverTest {
|
||||
public abstract class BaseSecantSolverAbstractTest {
|
||||
/** Returns the solver to use to perform the tests.
|
||||
* @return the solver to use to perform the tests
|
||||
*/
|
||||
|
@ -46,11 +46,6 @@ public abstract class BaseSecantSolverTest {
|
|||
*/
|
||||
protected abstract int[] getQuinticEvalCounts();
|
||||
|
||||
/**
|
||||
* Tests can be run only from subclasses.
|
||||
*/
|
||||
protected BaseSecantSolverTest() {}
|
||||
|
||||
@Test
|
||||
public void testSinZero() {
|
||||
// The sinus function is behaved well around the root at pi. The second
|
|
@ -22,7 +22,7 @@ package org.apache.commons.math.analysis.solvers;
|
|||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class IllinoisSolverTest extends BaseSecantSolverTest {
|
||||
public final class IllinoisSolverTest extends BaseSecantSolverAbstractTest {
|
||||
/** {@inheritDoc} */
|
||||
protected UnivariateRealSolver getSolver() {
|
||||
return new IllinoisSolver();
|
||||
|
|
|
@ -22,7 +22,7 @@ package org.apache.commons.math.analysis.solvers;
|
|||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class PegasusSolverTest extends BaseSecantSolverTest {
|
||||
public final class PegasusSolverTest extends BaseSecantSolverAbstractTest {
|
||||
/** {@inheritDoc} */
|
||||
protected UnivariateRealSolver getSolver() {
|
||||
return new PegasusSolver();
|
||||
|
|
|
@ -22,7 +22,7 @@ package org.apache.commons.math.analysis.solvers;
|
|||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class RegulaFalsiSolverTest extends BaseSecantSolverTest {
|
||||
public final class RegulaFalsiSolverTest extends BaseSecantSolverAbstractTest {
|
||||
/** {@inheritDoc} */
|
||||
protected UnivariateRealSolver getSolver() {
|
||||
return new RegulaFalsiSolver();
|
||||
|
|
|
@ -22,7 +22,7 @@ package org.apache.commons.math.analysis.solvers;
|
|||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class SecantSolverTest extends BaseSecantSolverTest {
|
||||
public final class SecantSolverTest extends BaseSecantSolverAbstractTest {
|
||||
/** {@inheritDoc} */
|
||||
protected UnivariateRealSolver getSolver() {
|
||||
return new SecantSolver();
|
||||
|
|
Loading…
Reference in New Issue