1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-17 02:35:09 +00:00
plantuml/test/net/sourceforge/plantuml/ScaleHeightTest.java

17 lines
319 B
Java
Raw Normal View History

2021-03-19 17:27:58 +00:00
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);
}
}