@@ -26,54 +26,34 @@ Licensed to the Apache Software Foundation (ASF) under one or more
26
26
public class SVGUserAgentAdapterTestCase {
27
27
28
28
@ Test
29
- public void testEqualResolution_72 () {
30
- checkGetMediumFontSize (72f , 72f , 9f );
29
+ public void testMediumFontResolution_72 () {
30
+ checkGetMediumFontSize (72f , 9f );
31
31
}
32
32
33
33
@ Test
34
- public void testEqualResolution_96 () {
35
- checkGetMediumFontSize (96f , 96f , 9f );
34
+ public void testMediumFontResolution_96 () {
35
+ checkGetMediumFontSize (96f , 12f );
36
36
}
37
37
38
38
@ Test
39
- public void testDiffResolution_72_96 () {
40
- checkGetMediumFontSize (72f , 96f , 6.74f );
41
- }
42
-
43
- @ Test
44
- public void testDiffResolution_96_72 () {
45
- checkGetMediumFontSize (96f , 72f , 12f );
46
- }
47
-
48
- @ Test
49
- public void testPixelMM_72 () {
50
- checkGetPixelUnitToMillimeter (72f , 72f );
51
- }
52
-
53
- @ Test
54
- public void testPixelMM_96 () { checkGetPixelUnitToMillimeter (96f , 96f ); }
55
-
56
- @ Test
57
- public void testPixelMM_72_96 () { checkGetPixelUnitToMillimeter (72f , 96f ); }
39
+ public void testPixelMM_72 () { checkGetPixelUnitToMillimeter (72f ); }
58
40
59
41
@ Test
60
- public void testPixelMM_96_72 () {
61
- checkGetPixelUnitToMillimeter (96f , 72f );
42
+ public void testPixelMM_96 () {
43
+ checkGetPixelUnitToMillimeter (96f );
62
44
}
63
45
64
- private void checkGetMediumFontSize (float sourceRes , float targetRes , float expectedSize ) {
46
+ private void checkGetMediumFontSize (float sourceRes , float expectedSize ) {
65
47
SVGUserAgentAdapter adapter = new SVGUserAgentAdapter ();
66
48
adapter .setSourceResolution (sourceRes );
67
- adapter .setTargetResolution (targetRes );
68
49
69
50
// Size must be calculated based on the dpi settings
70
51
assertEquals (expectedSize , adapter .getMediumFontSize (), 0.01 );
71
52
}
72
53
73
- private void checkGetPixelUnitToMillimeter (float sourceRes , float targetRes ) {
54
+ private void checkGetPixelUnitToMillimeter (float sourceRes ) {
74
55
SVGUserAgentAdapter adapter = new SVGUserAgentAdapter ();
75
56
adapter .setSourceResolution (sourceRes );
76
- adapter .setTargetResolution (targetRes );
77
57
78
58
// Pixel unit to mm must be calculated using the resolution set in the conf
79
59
// instead of assuming what the resolution is
0 commit comments