Skip to content
Snippets Groups Projects
Commit a51718aa authored by Leonard Kupper's avatar Leonard Kupper
Browse files

Set compatibility to SDK 11

parent 4d740582
No related branches found
No related tags found
1 merge request!8Feat/rasterizer 10
Showing
with 6 additions and 85 deletions
...@@ -16,8 +16,8 @@ plugins { ...@@ -16,8 +16,8 @@ plugins {
id 'checkstyle' id 'checkstyle'
} }
sourceCompatibility = 12 sourceCompatibility = 11
targetCompatibility = 12 targetCompatibility = 11
repositories { repositories {
// Use jcenter for resolving your dependencies. // Use jcenter for resolving your dependencies.
......
package de.tudresden.inf.mci.brailleplot.exporter;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class BrailleGerman6DotsTest {
@Test
public void testNullIsThrownInPrettyPrintCLI(){
Assertions.assertThrows(NullPointerException.class, () -> {
BrailleGerman6Dots B = new BrailleGerman6Dots();
B.getValue(null);
});
}
}
package de.tudresden.inf.mci.brailleplot.exporter;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class BrailleGerman8DotsTest {
@Test
public void testNullIsThrownInPrettyPrintCLI(){
Assertions.assertThrows(NullPointerException.class, () -> {
BrailleGerman8Dots B = new BrailleGerman8Dots();
B.getValue(null);
});
}
}
package de.tudresden.inf.mci.brailleplot.rendering;
public class AbstractRasterCanvasTest {
}
# Default Printer Properties
printer.max.charsPerLine=35
printer.max.linesPerPage=29
printer.equidistantSupport=false
printer.max.characterDistance=2.5
# Default Format Definition (assume A4 portrait)
format.default.page.width=210
format.default.page.height=297
format.default.margin.left=10
format.default.margin.top=10
format.default.margin.right=10
format.default.margin.bottom=10
\ No newline at end of file
# General Printer Properties
printer.name=Index Everest-D V4
printer.max.characterDistance=2.5
printer.equidistantSupport=true
# A4 Format
format.A4.page.width=210
format.A4.page.height=297
format.A4.margin.top=10
format.A4.margin.left=10
format.A4.margin.bottom=10
format.A4.margin.right=10
#https://codes.iccsafe.org/content/ICCA117_12003/chapter-7-communication-elements-and-features#ICCA117.1_2003_Ch07_Sec703
format.A4.raster.dotDistance.horizontal=2.5
format.A4.raster.dotDistance.vertical=2.5
format.A4.raster.cellDistance.horizontal=5.1
format.A4.raster.cellDistance.vertical=5.2
# B5 Format
format.B5.page.width=176
format.B5.page.height=250
format.B5.isPortrait=false
\ No newline at end of file
# Default Printer Properties
printer.max.charsPerLine=35
printer.max.linesPerPage=29
printer.equidistantSupport=false
printer.max.characterDistance=2.5
# Default Format Definition (assume A4 portrait)
format.default.page.width=210
fomrat.default.page.height=140
\ No newline at end of file
# Default Printer Properties
printer.max.charsPerLine=35
printer.max.linesPerPage=29
printer.equidistantSupport=false
printer.max.characterDistance=2.5
# Default Format Definition (assume A4 portrait)
format.default.page.width=210
format.default.page.height=abc
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment