Skip to content

Commit

Permalink
updates for ptk2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rainer-prosi committed Mar 22, 2024
1 parent d512d9d commit 070575f
Show file tree
Hide file tree
Showing 3 changed files with 7,234 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/test/java/org/cip4/printtalk/examples/ExampleAppIcs.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public synchronized void testParseExamples()
for (final File f : files)
{
log.info(f.getName());
schemaParse(f, 20);
schemaParse(f, 22);
}
}

Expand All @@ -72,10 +72,11 @@ public synchronized void testUpdateExamples()
{
log.info(f.getName());
final PrintTalk ptk = PrintTalk.parseFile(f.getAbsolutePath());
ptk.setAttribute(AttributeName.ICSVERSIONS, "Cus-APP_L1-2.1");
ptk.setAttribute(AttributeName.ICSVERSIONS, "Cus-APP_L1-2.2");
ptk.setAttribute(AttributeName.VERSION, "2.2");
ptk.init();
ptk.write2File(sm_dirTestDataTemp + f.getName());
schemaParse(new File(sm_dirTestDataTemp + f.getName()), 21);
schemaParse(new File(sm_dirTestDataTemp + f.getName()), 22);
}
}

Expand Down
Loading

0 comments on commit 070575f

Please sign in to comment.