From f8afc8dabc20d4286f3cb4d1c693029ceb13ebfd Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Wed, 7 Jul 2021 00:54:28 +0000 Subject: [PATCH] test util method git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1374 f203690c-595d-4dc9-a70b-905162fa7fd2 --- .../java/com/healthmarketscience/jackcess/TestUtil.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/test/java/com/healthmarketscience/jackcess/TestUtil.java b/src/test/java/com/healthmarketscience/jackcess/TestUtil.java index f06f89d..7d1d6b3 100644 --- a/src/test/java/com/healthmarketscience/jackcess/TestUtil.java +++ b/src/test/java/com/healthmarketscience/jackcess/TestUtil.java @@ -317,6 +317,15 @@ public class TestUtil dumpTable(table, new PrintWriter(System.out, true)); } + public static void dumpProperties(Table table) throws Exception { + System.out.println("TABLE_PROPS: " + table.getName() + ": " + + table.getProperties()); + for(Column c : table.getColumns()) { + System.out.println("COL_PROPS: " + c.getName() + ": " + + c.getProperties()); + } + } + static void dumpDatabase(Database mdb, boolean systemTables, PrintWriter writer) throws Exception { -- 2.39.5