Skip to content

Commit

Permalink
Implement some more Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ckorzen committed Jan 22, 2021
1 parent 588fe5e commit 2ef5734
Show file tree
Hide file tree
Showing 13 changed files with 1,329 additions and 398 deletions.
Binary file modified bin/pdfact
Binary file not shown.
Binary file modified bin/pdfact.jar
Binary file not shown.
10 changes: 9 additions & 1 deletion pdfact-core/src/main/resources/log4j2.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ status = error
appender.console.type = Console
appender.console.name = LogToConsole
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = %d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
# The meaning of the placeholders in the pattern below is:
# %d{yyyy-MM-dd HH:mm:ss} : The date and time of the log, in the format as defined in the curly braces.
# %c{1} : The name of the logger; without the "{1}" the fully qualified name would be printed.
# %-5p : The log level (e.g., DEBUG, INFO, WARN, ERROR); the "-5" causes all levels to be exactly 5 characters long.
# %C{1} : The name of the class in which the log was produced; without the "{1}" the fully qualified name would be printed.
# %L : The line number of the class in which the log message was produced.
# %m : The log message.
# %n : Line break.
appender.console.layout.pattern = %d{yyyy-MM-dd HH:mm:ss} [%c{1}] %-5p %C{1}:%L - %m%n

# Root logger option
rootLogger.level = error
Expand Down
178 changes: 0 additions & 178 deletions pdfact-core/src/test/java/pdfact/core/PdfActExtractionTestAcl2004.java

This file was deleted.

Loading

0 comments on commit 2ef5734

Please sign in to comment.