org.apache.commons.math.stat.inference
Class TestFactory

java.lang.Object
  extended by org.apache.commons.math.stat.inference.TestFactory
Direct Known Subclasses:
TestFactoryImpl

Deprecated. as of 1.2, pluggability of test instances is now provided through constructors and setters.

public abstract class TestFactory
extends java.lang.Object

Abstract factory to create inference test instances.

Since:
1.1
Version:
$Revision: 574050 $ $Date: 2007-09-09 11:54:08 -0700 (Sun, 09 Sep 2007) $

Constructor Summary
protected TestFactory()
          Deprecated. Default constructor.
 
Method Summary
abstract  ChiSquareTest createChiSquareTest()
          Deprecated. Create a ChiSquareTest instance.
abstract  TTest createTTest()
          Deprecated. Create a TTest instance.
static TestFactory newInstance()
          Deprecated. Create an instance of a TestFactory
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TestFactory

protected TestFactory()
Deprecated. 
Default constructor.

Method Detail

newInstance

public static TestFactory newInstance()
Deprecated. 
Create an instance of a TestFactory

Returns:
a new factory.

createTTest

public abstract TTest createTTest()
Deprecated. 
Create a TTest instance.

Returns:
a new TTest instance

createChiSquareTest

public abstract ChiSquareTest createChiSquareTest()
Deprecated. 
Create a ChiSquareTest instance.

Returns:
a new ChiSquareTest instance