osci-render/test/TestSuite.java

13 wiersze
267 B
Java
Czysty Zwykły widok Historia

import org.junit.Test;
import static org.junit.Assert.*;
public class TestSuite {
@Test
public void lineRotationTest() {
Line line = new Line(-0.5, 0.5, 0.5, 0.5);
line.rotate(Math.PI / 2);
2020-01-27 21:51:50 +00:00
assertEquals(new Line(-0.5, -0.5, -0.5, 0.5), line);
}
}