Package org.apache.torque.om
Class NumberKeyTest
java.lang.Object
org.apache.torque.BaseTestCase
org.apache.torque.om.NumberKeyTest
Tests the NumberKey class.
- Version:
- $Id: NumberKeyTest.java 1917245 2024-04-21 14:06:23Z tv $
- Author:
- Stephen Haberman
-
Field Summary
Fields inherited from class org.apache.torque.BaseTestCase
CONFIG_FILE, database, databaseMap, databaseMysql, databaseOracle, databasePostgresql, integerColumnMap, stringColumnMap, stringColumnMap2, stringColumnMap3, tableMap -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidTest copy constructor.voidTest copy constructor.voidTest copy constructor.voidTest double constructor.voidTest copy constructor.voidTest !voidTest !voidTest a.equals(a)voidTest a.equals(b) = b.equals(a)voidTest a.equals(b) = b.equals(c) = c.equals(a)voidTest a.hashCode().equals(a.hashCode())voidTest int constructor.voidtestList()Test sorting.voidTest long constructor.voidTest number constructor.voidTest number constructor with null value.voidTest setValue(BigDecimal) method.voidTest setValue(NumberKey) method.voidTest setValue(NumberKey) method with null argument.voidTest setValue(String) method.voidTest setValue(String) method with null argument.voidTest String constructor.voidTest String constructor with null value.Methods inherited from class org.apache.torque.BaseTestCase
setUp
-
Constructor Details
-
NumberKeyTest
public NumberKeyTest()
-
-
Method Details
-
testEqualsReflexive
@Test public void testEqualsReflexive()Test a.equals(a) -
testHashCodeEqual
@Test public void testHashCodeEqual()Test a.hashCode().equals(a.hashCode()) -
testEqualsFalse
@Test public void testEqualsFalse()Test !a.equals(b) -
testEqualsSymmetric
@Test public void testEqualsSymmetric()Test a.equals(b) = b.equals(a) -
testEqualsTransitive
@Test public void testEqualsTransitive()Test a.equals(b) = b.equals(c) = c.equals(a) -
testEqualsNull
@Test public void testEqualsNull()Test !a.equals(null) -
testList
@Test public void testList()Test sorting. -
testEmptyConstructor
@Test public void testEmptyConstructor()Test copy constructor. -
testCopyConstructor
@Test public void testCopyConstructor()Test copy constructor. -
testCopyConstructorNullValue
@Test public void testCopyConstructorNullValue()Test copy constructor. -
testBigDecimalConstructor
@Test public void testBigDecimalConstructor()Test copy constructor. -
testLongConstructor
@Test public void testLongConstructor()Test long constructor. -
testDoubleConstructor
@Test public void testDoubleConstructor()Test double constructor. -
testIntConstructor
@Test public void testIntConstructor()Test int constructor. -
testNumberConstructor
@Test public void testNumberConstructor()Test number constructor. -
testNumberConstructorNull
@Test public void testNumberConstructorNull()Test number constructor with null value. -
testStringConstructor
@Test public void testStringConstructor()Test String constructor. -
testStringConstructorNull
@Test public void testStringConstructorNull()Test String constructor with null value. -
testSetValueString
@Test public void testSetValueString()Test setValue(String) method. -
testSetValueStringNull
@Test public void testSetValueStringNull()Test setValue(String) method with null argument. -
testSetValueBigDecimal
@Test public void testSetValueBigDecimal()Test setValue(BigDecimal) method. -
testSetValueNumberKey
@Test public void testSetValueNumberKey()Test setValue(NumberKey) method. -
testSetValueNumberKeyNull
@Test public void testSetValueNumberKeyNull()Test setValue(NumberKey) method with null argument.
-