renamed AbstractMultipleLinearRegressionTest into MultipleLinearRegressionAbstractTest
to match the pom.xml exclude rules and prevent an error in automatic builds git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@722612 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
863fee8737
commit
6d37e391c7
|
@ -19,7 +19,7 @@ package org.apache.commons.math.stat.regression;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class GLSMultipleLinearRegressionTest extends AbstractMultipleLinearRegressionTest {
|
public class GLSMultipleLinearRegressionTest extends MultipleLinearRegressionAbstractTest {
|
||||||
|
|
||||||
private double[] y;
|
private double[] y;
|
||||||
private double[][] x;
|
private double[][] x;
|
||||||
|
|
|
@ -23,7 +23,7 @@ import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
|
||||||
public abstract class AbstractMultipleLinearRegressionTest {
|
public abstract class MultipleLinearRegressionAbstractTest {
|
||||||
|
|
||||||
protected MultipleLinearRegression regression;
|
protected MultipleLinearRegression regression;
|
||||||
|
|
|
@ -20,7 +20,7 @@ import org.apache.commons.math.TestUtils;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class OLSMultipleLinearRegressionTest extends AbstractMultipleLinearRegressionTest {
|
public class OLSMultipleLinearRegressionTest extends MultipleLinearRegressionAbstractTest {
|
||||||
|
|
||||||
private double[] y;
|
private double[] y;
|
||||||
private double[][] x;
|
private double[][] x;
|
||||||
|
|
Loading…
Reference in New Issue