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:
Gilles Sadowski 2011-06-26 17:02:20 +00:00
parent 57e2712f50
commit d803dbac0e
5 changed files with 5 additions and 10 deletions

View File

@ -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

View File

@ -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();

View File

@ -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();

View File

@ -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();

View File

@ -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();