Package org.apache.torque
Klasse BaseTestCase
java.lang.Object
org.apache.torque.BaseTestCase
- Bekannte direkte Unterklassen:
ColumnMapTest
,ComboKeyTest
,CriteriaTest
,CriterionTest
,JoinTest
,MockBaseTestCase
,NumberKeyTest
,QueryTest
,SqlBuilderTest
,SummaryHelperTest
,TorqueInstanceTest
,UniqueListTest
Base functionality to be extended by all Torque test cases. Test
case implementations are used to automate unit testing via JUnit.
- Version:
- $Id: BaseTestCase.java 1867515 2019-09-25 15:02:03Z gk $
- Autor:
- Daniel Rall, Christopher Elkins
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final String
The path to the configuration file.protected org.apache.torque.Database
A Reference to the postgresql (default) database.protected org.apache.torque.map.DatabaseMap
A pre-filled database map.protected org.apache.torque.Database
A Reference to the mysql database.protected org.apache.torque.Database
A Reference to the oracle database.protected org.apache.torque.Database
A Reference to the postgresql (default) database.protected org.apache.torque.map.ColumnMap
A pre-filled Integer column map.protected org.apache.torque.map.ColumnMap
A pre-filled String column map.protected org.apache.torque.map.ColumnMap
A pre-filled String column map.protected org.apache.torque.map.ColumnMap
A pre-filled String column map.protected org.apache.torque.map.TableMap
A pre-filled table map. -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
-
Felddetails
-
CONFIG_FILE
The path to the configuration file.- Siehe auch:
-
tableMap
protected org.apache.torque.map.TableMap tableMapA pre-filled table map. -
databaseMap
protected org.apache.torque.map.DatabaseMap databaseMapA pre-filled database map. -
database
protected org.apache.torque.Database databaseA Reference to the postgresql (default) database. -
databasePostgresql
protected org.apache.torque.Database databasePostgresqlA Reference to the postgresql (default) database. -
databaseMysql
protected org.apache.torque.Database databaseMysqlA Reference to the mysql database. -
databaseOracle
protected org.apache.torque.Database databaseOracleA Reference to the oracle database. -
stringColumnMap
protected org.apache.torque.map.ColumnMap stringColumnMapA pre-filled String column map. -
stringColumnMap2
protected org.apache.torque.map.ColumnMap stringColumnMap2A pre-filled String column map. -
stringColumnMap3
protected org.apache.torque.map.ColumnMap stringColumnMap3A pre-filled String column map. -
integerColumnMap
protected org.apache.torque.map.ColumnMap integerColumnMapA pre-filled Integer column map.
-
-
Konstruktordetails
-
BaseTestCase
public BaseTestCase()
-
-
Methodendetails
-
setUp
Re-Initialize Torque and fill supplied data. Subclasses which override setUp() must call super.setUp() as their first action.- Löst aus:
Exception
- if initialization fails.
-