1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-10 12:12:27 +00:00
plantuml/test/net/sourceforge/plantuml/ScaleHeightTest.java
2021-03-19 18:27:58 +01:00

17 lines
319 B
Java

package net.sourceforge.plantuml;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class ScaleHeightTest {
@Test
void testScale2() {
final ScaleHeight cut = new ScaleHeight(100);
final double scale = cut.getScale(50, 50);
assertEquals(2.0, scale, .001);
}
}