Package org.apache.torque.om
Klasse 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 $
- Autor:
- Stephen Haberman
-
Feldübersicht
Von Klasse geerbte Felder org.apache.torque.BaseTestCase
CONFIG_FILE, database, databaseMap, databaseMysql, databaseOracle, databasePostgresql, integerColumnMap, stringColumnMap, stringColumnMap2, stringColumnMap3, tableMap
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
Test copy constructor.void
Test copy constructor.void
Test copy constructor.void
Test double constructor.void
Test copy constructor.void
Test !void
Test !void
Test a.equals(a)void
Test a.equals(b) = b.equals(a)void
Test a.equals(b) = b.equals(c) = c.equals(a)void
Test a.hashCode().equals(a.hashCode())void
Test int constructor.void
testList()
Test sorting.void
Test long constructor.void
Test number constructor.void
Test number constructor with null value.void
Test setValue(BigDecimal) method.void
Test setValue(NumberKey) method.void
Test setValue(NumberKey) method with null argument.void
Test setValue(String) method.void
Test setValue(String) method with null argument.void
Test String constructor.void
Test String constructor with null value.Von Klasse geerbte Methoden org.apache.torque.BaseTestCase
setUp
-
Konstruktordetails
-
NumberKeyTest
public NumberKeyTest()
-
-
Methodendetails
-
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.
-