Class AbstractFunctionTest

java.lang.Object
junit.framework.Assert
junit.framework.TestCase
org.apache.torque.util.functions.AbstractFunctionTest
All Implemented Interfaces:
junit.framework.Test

public class AbstractFunctionTest extends junit.framework.TestCase
Tests the AggregateFunction class.
Version:
$Id: AbstractFunctionTest.java 1917245 2024-04-21 14:06:23Z tv $
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
    Tests that addArgument works
    void
    Tests that getArgument(0) returns the column.
    void
    Tests the getColumnName method always returns null.
    void
    Tests the getFullTableName method returns the fullTableName of the column argument.
    void
    Tests the getFullTableName method returns null if different tables are encountered.
    void
    Tests the getSchemaName method returns the schema of the column argument.
    void
    Tests the getSchemaName method returns null if different schemas are encountered.
    void
    Tests that getArgumentList and SetArgumentList work
    void
    Tests that getArguments and SetArguments work
    void
    Tests the getTableName method returns the table of the column argument.
    void
    Tests the getTableName method returns null if different tables are encountered.

    Methods inherited from class junit.framework.TestCase

    assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, countTestCases, createResult, fail, fail, failNotEquals, failNotSame, failSame, format, getName, run, run, runBare, runTest, setName, tearDown, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • AbstractFunctionTest

      public AbstractFunctionTest()
  • Method Details

    • setUp

      public void setUp()
      Overrides:
      setUp in class junit.framework.TestCase
    • testGetSetArguments

      public void testGetSetArguments()
      Tests that getArguments and SetArguments work
    • testGetSetArgumentList

      public void testGetSetArgumentList()
      Tests that getArgumentList and SetArgumentList work
    • testAdArgument

      public void testAdArgument()
      Tests that addArgument works
    • testGetArgument

      public void testGetArgument()
      Tests that getArgument(0) returns the column.
    • testGetColumnName

      public void testGetColumnName()
      Tests the getColumnName method always returns null. This is because the function has no real column name.
    • testGetTableName

      public void testGetTableName()
      Tests the getTableName method returns the table of the column argument.
    • testGetTableNameDifferentTables

      public void testGetTableNameDifferentTables()
      Tests the getTableName method returns null if different tables are encountered.
    • testGetFullTableName

      public void testGetFullTableName()
      Tests the getFullTableName method returns the fullTableName of the column argument.
    • testGetFullTableNameDifferentTables

      public void testGetFullTableNameDifferentTables()
      Tests the getFullTableName method returns null if different tables are encountered.
    • testGetSchemaName

      public void testGetSchemaName()
      Tests the getSchemaName method returns the schema of the column argument.
    • testGetSchemaNameDifferentTables

      public void testGetSchemaNameDifferentTables()
      Tests the getSchemaName method returns null if different schemas are encountered.