Package org.djutils.data
Class TestListTable
- java.lang.Object
-
- org.djutils.data.TestListTable
-
public class TestListTable extends Object
TestListTable tests the functions of the ListTable, the Column and the Record.Copyright (c) 2020-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUTILS License.- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
-
-
Constructor Summary
Constructors Constructor Description TestListTable()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
tableCompare(ListTable table1, ListTable table2)
Compare the contents of two tables, where primitive content and wrapped primitive content (e.g., a double and a Double) are considered the same if the stored value is the same.void
testIllegalColumnTable()
Test column and table construction with wrong arguments.void
testIllegalRecordTable()
Test column and table construction with wrong value arguments.void
testListTable()
Test the ListTable, the Column and the Record.void
testSubclassListTable()
Test the ListTable, the Column and the Record.
-
-
-
Method Detail
-
testListTable
public void testListTable()
Test the ListTable, the Column and the Record.
-
testSubclassListTable
public void testSubclassListTable()
Test the ListTable, the Column and the Record.
-
tableCompare
public static void tableCompare(ListTable table1, ListTable table2)
Compare the contents of two tables, where primitive content and wrapped primitive content (e.g., a double and a Double) are considered the same if the stored value is the same.- Parameters:
table1
- the first tabletable2
- the second table
-
testIllegalColumnTable
public void testIllegalColumnTable()
Test column and table construction with wrong arguments.
-
testIllegalRecordTable
public void testIllegalRecordTable()
Test column and table construction with wrong value arguments.
-
-