osci-render/test/TestSuite.java

13 wiersze
265 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);
assertEquals(new Line(0.5, 0.5, 0.5, -0.5), line);
}
}