Class BaseTestCase

    • Field Detail

      • tableMap

        protected TableMap tableMap
        A pre-filled table map.
      • databaseMap

        protected DatabaseMap databaseMap
        A pre-filled database map.
      • database

        protected Database database
        A Reference to the postgresql (default) database.
      • databasePostgresql

        protected Database databasePostgresql
        A Reference to the postgresql (default) database.
      • databaseMysql

        protected Database databaseMysql
        A Reference to the mysql database.
      • databaseOracle

        protected Database databaseOracle
        A Reference to the oracle database.
      • stringColumnMap

        protected ColumnMap stringColumnMap
        A pre-filled String column map.
      • stringColumnMap2

        protected ColumnMap stringColumnMap2
        A pre-filled String column map.
      • stringColumnMap3

        protected ColumnMap stringColumnMap3
        A pre-filled String column map.
      • integerColumnMap

        protected ColumnMap integerColumnMap
        A pre-filled Integer column map.
    • Constructor Detail

      • BaseTestCase

        public BaseTestCase()
    • Method Detail

      • setUp

        @BeforeEach
        public void setUp()
                   throws Exception
        Re-Initialize Torque and fill supplied data. Subclasses which override setUp() must call super.setUp() as their first action.
        Throws:
        Exception - if initialization fails.